@extends('layouts.frontend') @section('title') {{ $video->title ?? 'Video' }} - {{ $book->title }} @endsection @section('meta') @endsection @section('content')
{{ $video->title ?? $book->title }}
@if($video->date)

{{ $video->date->format('d M Y') }}

@endif
Buku Terkait
{{ $book->title }}

{{ $book->author->name ?? '' }}

@foreach($book->categories as $category) {{ $category->name }} @endforeach

{{ $book->publisher->name ?? '' }} @if($book->year) ยท {{ $book->year }} @endif

Video Lainnya
@forelse($otherVideos as $otherVideo)

{{ $otherVideo->title ?? 'Video' }}

@if($otherVideo->date) {{ $otherVideo->date->format('d M Y') }} @endif
@empty

Tidak ada video lainnya.

@endforelse
@endsection