{{ $comment->user->first_name }} {{ $comment->user->last_name }}
{{ $comment->comment }}
@auth Reply @if(auth()->id() === $comment->user_id) Delete @endif @endauth
@if($comment->replies && $comment->replies->count() > 0)
@foreach($comment->replies as $reply) @include('blog.partials.reply', ['reply' => $reply]) @endforeach
@endif