@extends('layouts.admin-layout')
@section('title', 'All Home Video ')
@section('content')
Home Video Section
| S.N. |
Image |
status |
Action |
@foreach($get_home_videos as $home_video)
| {{ $loop->iteration }} |
|
{{$home_video->status === 1 ? 'Approve' : 'Not Approve'}}
|
|
@endforeach
@endsection
@section('script')
@endsection