Video Reels Management
{{-- Header --}}

Homepage Video Reels

Manage YouTube shorts or promotional videos displayed in the carousel

Add Video Reel
@if(session('success'))
{{ session('success') }}
@endif {{-- Table Container --}}
@forelse($videos as $video) @php $videoId = null; if (preg_match('%(?:youtube(?:-nocookie)?\.com/(?:[^/]+/.+/|(?:v|e(?:mbed)?)/|shorts/|.*[?&]v=)|youtu\.be/)([^"&?/ ]{11})%i', $video->video_url, $match)) { $videoId = $match[1]; } $thumb = $video->thumbnail ? asset('storage/' . $video->thumbnail) : ($videoId ? "https://img.youtube.com/vi/$videoId/hqdefault.jpg" : asset('images/placeholder.svg')); @endphp

{{ $video->title ?: 'Untitled Video' }}

ORDER #{{ $video->order }} — {{ $video->status ? 'LIVE' : 'HIDDEN' }}

WATCH VIDEO →
@csrf @method('DELETE')
@empty
No video reels found
@endforelse