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