@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.video.title_singular') }}
{{ trans('cruds.video.fields.id') }} {{ $video->id }}
{{ trans('cruds.video.fields.book') }} {{ $video->book->title ?? '' }}
{{ trans('cruds.video.fields.title') }} {{ $video->title }}
{{ trans('cruds.video.fields.url') }} {{ $video->url }}
{{ trans('cruds.video.fields.date') }} {{ $video->date ? $video->date->format('Y-m-d') : '' }}
{{ trans('cruds.video.fields.thumbnail') }} @if($video->thumbnail) thumbnail @endif
@endsection