{{ trans_choice('entities.comment_count', count($page->comments), ['count' => count($page->comments)]) }}
@if (count($page->comments) === 0 && userCan('comment-create-all'))
@endif
@foreach($page->comments as $comment) @include('comments.comment', ['comment' => $comment]) @endforeach
@if(userCan('comment-create-all')) @include('comments.create') @if (count($page->comments) > 0)
@endif @endif