@if ($comments->isNotEmpty())
{{ __('Latest comments') }}
@foreach ($comments as $comment)
@isset($comment->user) {{ $comment->user->name ? $comment->user->name : $comment->user->username }}
{{ $comment->user->name ? $comment->user->name : $comment->user->username }}
@else
{{ __('Account deleted') }}
@endisset
{{ $comment->comment }}
{{ $comment->story->title }}
@endforeach
@endif