@extends('admin.layouts.master') @section('content') @php use App\Helpers\VideoHelper; @endphp
Vídeos
Novo registro @if (session()->has('success'))
@push('scripts') @include('admin.scripts.toast') @endpush @endif @if (session()->has('error'))
@push('scripts') @include('admin.scripts.toast') @endpush @endif
@foreach ($videos as $video) @endforeach
id Titúlo Legenda Url Vídeo Ações
{{ $video->id }} {{ $video->title }} {{ $video->caption }} {{ $video->url }}
@csrf @method('DELETE')
{{ $videos->links() }}
@push('scripts') @include('admin.scripts.video') @endpush @endsection