@extends('layouts.app') @section('content')
@include('partials.header') @include('partials.sidebar')

Welcome Video

@if (session('success')) @endif @if (session('error') || $errors->any()) @endif @if ($videos->count() > 0)
@foreach ($videos as $video) @endforeach
Title File Size Status Uploaded By Upload Date Actions
{{ $video->title }} @if ($video->status !== 'active') (Inactive) @endif {{ $video->original_filename }} {{ $video->formatted_file_size }}
status === 'active' ? 'checked' : '' }} onchange="updateActiveStatus({{ $video->id }}, this.checked)" data-video-id="{{ $video->id }}">
{{ $video->uploader->name ?? 'Unknown' }} {{ $video->created_at->format('M d, Y') }}
@if (method_exists($videos, 'links'))
{{ $videos->links() }}
@endif @else
No videos uploaded yet

Upload your first hotel video to get started.

Upload Video
@endif
@endsection