@extends('admin.layout') @section('title', 'Videos') @section('content')
@if(session('import_errors') && count(session('import_errors')) > 0)| Thumb | Title | Provider | Status | Error | Player | Actions | |
|---|---|---|---|---|---|---|---|
|
@php
$thumbUrl = $thumbUrls[$video->id] ?? null;
@endphp
@if($thumbUrl)
🎬
@endif
|
{{-- Display mode --}}
{{-- Edit mode (hidden by default) --}}
{{ $video->slug }}
|
{{ $video->provider }} @if($video->isSelfHosted()) ☁️ @endif | @switch($video->status) @case('uploaded') ⬆ uploaded @break @case('encoding') ⏳ encoding @break @case('ready') ✅ ready @break @case('failed') ❌ failed @break @case('disabled') 🚫 disabled @break @default {{ $video->status }} @endswitch | @if($video->error_message) {{ Str::limit($video->error_message, 60) }} @else — @endif | @if($video->isPlayable()) ▶ Play @else — @endif |
Belum ada video. Klik "Tambah Video" untuk mulai.