@extends('backend.layouts.master') @section('title','All Videos') @section('main-content') @include('backend.layouts.notification')
Videos
@if(count($videos)>0) @foreach($videos as $video) @endforeach
S.N. Title Embedded Link Status Action
{{$video->id}} {{ $video->title }} @if($video->status=='active') {{$video->status}} @else {{$video->status}} @endif
@csrf @method('delete')
@else
No videos found!!! Please add video
@endif
@endsection