@extends('backend.layouts.app') @section('title', 'Videos') @section('content')

Videos List

@foreach($videos as $video) @endforeach
# Image Title Status
{{$video->id}} {{$video->title}} {{$video->status == true ? 'On' : 'Off'}} edit
@endsection @push('scripts') @endpush