@extends('backend.layouts.master')
@section('title') Videos @endsection
@section('main-content')
@include('backend.layouts.notification')
@if(count($videos)>0)
| ID |
Link |
Status |
Action |
@foreach($videos as $data)
| {{$data->id}} |
|
@if($data->status=='active')
{{$data->status}}
@else
{{$data->status}}
@endif
|
|
@endforeach
@else
No videos found!!! Please add video
@endif
@endsection