@extends('layouts.admin') @section('title', 'Manage Videos') @section('admin')
{{-- Admin Navigation --}} @include('admin._nav', ['current' => 'admin.videos']) {{-- Header --}}

Manage Videos

{{-- Sync Button --}}
@csrf
{{-- Search Bar --}}
@if(request('search')) Clear @endif
{{-- Videos Table --}}
@forelse($videos as $video) {{-- Inline Edit Row --}} @empty @endforelse
Thumbnail Title YouTube ID Duration Actions
{{ $video->title }}

{{ $video->title }}

@if($video->description)

{{ $video->description }}

@endif
{{ $video->youtube_id }} {{ $video->formatted_duration }}
{{-- Edit Toggle --}} {{-- Delete --}}
@csrf @method('DELETE')

No videos found.

Click "Sync from YouTube" to import videos.

{{-- Pagination --}} @if($videos->hasPages())
{{ $videos->links() }}
@endif
@push('scripts') @endpush @endsection