{{ $comment->user->name ?? __('blog.Anonymous') }}
@if(optional($comment->user)->id && optional($comment->user)->id === optional($post->user)->id)
@lang('blog.AUTHOR')
@endif
{{ $comment->created_at->diffForHumans() }}
{!! nl2br(e($comment->content)) !!}
@auth
{{-- Inline Reply Form --}}
@endauth
{{-- Nested Replies --}}
@if($comment->childrenRecursive->count())
@foreach($comment->childrenRecursive as $reply)
@include('theme::partials.blog.comment-item-layout', ['comment' => $reply, 'post' => $post])
@endforeach
@endif