@extends('layouts.shell') @section('title', $video->title) @section('main-pad', 'px-5 pb-6') @section('content') @php $liked = auth()->check() && $video->likes()->where('user_id', auth()->id())->exists(); $likeCount = $video->likes()->count(); @endphp {{-- Player --}}
{{ number_format($video->views_count) }}x ditonton
{{ $video->description }}
@endif {{-- Konteks series + episode berikutnya --}} @if($video->series_id && $video->series) @php $next = $video->nextEpisode(); @endphpBagian dari series
Episode {{ $video->episode_number }}
@if($next){{ $comment->user->name ?? 'Anonim' }} {{ $comment->created_at->diffForHumans() }}
{{ $comment->body }}
Belum ada komentar. Jadilah yang pertama.
@endforelse