@extends('admin.layouts.app') @php $pageTitle = 'Admin - Video List'; $pageHeading = 'Video List'; $pageSubheading = 'Monitor video status, scan storage, and manage assets.'; @endphp @push('head') @endpush @section('content')

Video List ({{ $videos->total() }})

@if($errors->any())
{{ $errors->first() }}
@endif @forelse($videos as $video) @empty @endforelse
Title Status Provider Storage Created At Action
{{ $video->title }}
{{ $video->slug }}
{{ ucfirst($video->status) }} {{ $video->display_provider }} {{ $video->display_storage }} {{ $video->created_at?->format('Y-m-d H:i') }}
@if(!empty($video->play_url)) Play @endif View @if($video->status === 'failed')
@csrf
@endif @if($video->status !== 'disabled')
@csrf
@endif
@csrf @method('DELETE')
Belum ada video.
{{ $videos->links() }}
@endsection