Comments ({{ isset($video->comment_count) ? $video->comment_count : 0 }})

@auth
{{ Auth::user()->name }}
@else
Sign in to comment
@endauth
@if (isset($video)) @forelse($video->comments()->whereNull('parent_id')->with('user', 'replies.user')->latest()->limit(20)->get() as $comment) @include('videos.partials.comment', ['comment' => $comment]) @empty

No comments yet. Be the first to comment!

@endforelse @endif