{{ $comment->user->name }}
{{ $comment->user->name }} {{ $comment->created_at->diffForHumans() }}
{{ $comment->body }}
@auth @if(Auth::id() === $comment->user_id) @endif @endauth
@if($comment->replies && $comment->replies->count() > 0)
@foreach($comment->replies as $reply) @include('videos.partials.comment', ['comment' => $reply, 'video' => $video ?? null]) @endforeach
@endif