@if (authUser())
{{ authUser()->username }}
@elseif($comments->count() < 1)

{{ translate('This item has no comments') }}

@if (!authUser())

{!! translate(':sign_in to comment', [ 'sign_in' => '' . translate('Sign In') . '', ]) !!}

@endif
@endif @if ($comments->count() > 0)
@foreach ($comments as $comment) @endforeach
{{ $comments->links() }} @endif