@extends('layouts.admin') @section('header', 'Hero Video Cards') @section('content')

Video Cards (Homepage Carousel)

+ Add Video
@if(session('success'))
{{ session('success') }}
@endif
@forelse($videos as $video) @empty @endforelse
Order Thumbnail Title Video URL Status Actions
{{ $video->sort_order }} @if($video->thumbnail) @else
No Thumb
@endif
{{ $video->title }} {{ Str::limit($video->video_url, 40) }} {{ $video->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No video cards yet. Add one to start the homepage carousel!
@endsection