@can('video_create')
{{ trans('global.add') }} {{ trans('cruds.video.title_singular') }}
@endcan
{{ trans('cruds.video.title_singular') }} {{ trans('global.list') }}
@foreach($videos as $key => $video) @endforeach
{{ trans('cruds.video.fields.id') }} {{ trans('cruds.video.fields.title') }} {{ trans('cruds.video.fields.url') }} {{ trans('cruds.video.fields.date') }}  
{{ $video->id ?? '' }} {{ $video->title ?? '' }} {{ $video->url ?? '' }} {{ $video->date ? $video->date->format('Y-m-d') : '' }} @can('video_show') {{ trans('global.view') }} @endcan @can('video_edit') {{ trans('global.edit') }} @endcan @can('video_delete')
@endcan
@section('scripts') @parent @endsection