@if (!$deleted)
@if (!$comment->guest_id) {{ $comment->user->name ?? '' }}
{{ $comment->user->name ?? '[deleted user]' }}
@elseif($comment->guest_id || $comment->user_id) Guest User
Guest User
@else {{ $comment->user->name ?? '' }}
{{ $comment->user->name ?? '[deleted user]' }}
@endif
@if ($this->authorizeGuest() || $comment->user_id === auth()->id()) @endif
{!! $comment->getComment() !!} @if ($emojis)
@endif
@if ($this->allowGuests || auth()->user()) @endif @if ($this->authorizeGuest())

Are you sure you want to delete your comment?

@else @can('edit', $comment) @endcan @can('delete', $comment)

Are you sure you want to delete your comment?

@endcan @endif
@if ($comment->children->count()) @if ($depth < $maxDepth) @foreach($comment->children as $child)
@endforeach @else
@foreach($comment->children as $child)
@endforeach
@endif @endif
@endif