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