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

{{ $hotelVideo->title }}

Show Video: {{ $hotelVideo->title }}

Video Preview
@if ($hotelVideo->fileExists()) @else
Video File Not Found

The video file could not be located on the server.

@endif
Video Information
Title: {{ $hotelVideo->title }}
Status: @if ($hotelVideo->status === 'active') Active @else Inactive @endif
Original Filename: {{ $hotelVideo->original_filename }}
File Size: {{ $hotelVideo->formatted_file_size }}
MIME Type: {{ $hotelVideo->mime_type }}
Uploaded By: {{ $hotelVideo->uploader->name ?? 'Unknown' }}
Upload Date: {{ $hotelVideo->created_at->format('M d, Y g:i A') }}
Last Modified: {{ $hotelVideo->updated_at->format('M d, Y g:i A') }}

@if ($hotelVideo->fileExists()) Download Video @endif Edit Video
Technical Details
File Hash: {{ substr($hotelVideo->file_hash, 0, 16) }}...
File Exists: @if ($hotelVideo->fileExists()) Yes @else No @endif
Storage Path: {{ $hotelVideo->video_path }}
Video URL: View URL
@endsection