@extends('admin.layouts.app') @section('content')

{{ $page_title }}

{{ $video->material->title ?? 'N/A' }}

{{ $video->url }}

Provider:
{{ $video->provider_label }}
Duration:
{{ $video->duration_formatted }}
@if($video->captions)
Captions:
{{ json_encode($video->captions, JSON_PRETTY_PRINT) }}
@endif @if($video->drm)
DRM Settings:
{{ json_encode($video->drm, JSON_PRETTY_PRINT) }}
@endif
Material:
@if($video->material) {{ $video->material->title }} @else N/A @endif
Created:
{{ $video->created_at->format('M d, Y H:i') }}
Updated:
{{ $video->updated_at->format('M d, Y H:i') }}
@if($video->thumbnail_url)
Video thumbnail
@endif @if($video->embed_url) @endif
@endsection