{{-- Video Type Icon (using Bootstrap Icons like video-card.blade.php) --}}
@php
$typeIcon = match($video->type) {
'music' => 'bi-music-note',
'match' => 'bi-trophy',
default => 'bi-film',
};
@endphp
{{-- Video Title with Type Icon Inline --}}
@auth
{{-- Like Button with Icon and Count --}}
{{-- Edit Button - Only for video owner --}}
@if(Auth::id() === $video->user_id)
@endif
@else
Like
@endauth
{{-- Share Button --}}
@if($video->isShareable())
@endif
Comments ({{ $video->comment_count }})
{{-- Comment Form --}} @authNo comments yet. Be the first to comment!
@endforelse