@if($video->duration)
Duration: {{ $video->duration }}
@if($video->duration_seconds)
({{ gmdate('H:i:s', $video->duration_seconds) }})
@endif
@endif
@if($video->age_group)
Age Group: {{ $video->age_group }}
@endif
@if($video->view_count > 0)
Views: {{ number_format($video->view_count) }}
@endif
@if($video->rating > 0)
Rating: ⭐ {{ number_format($video->rating, 1) }} / 5.0
@if($video->rating_count > 0)
({{ $video->rating_count }} {{ Str::plural('rating', $video->rating_count) }})
@endif
@endif
Published: {{ $video->created_at->format('F d, Y') }}