@if ($article->can_comment)
@if (auth()->check() && !$article->userHasReachedArticleCommentLimit())
{{ __('Post a comment') }}
{{ __('Post a comment on the article, to let us know what you think about it') }}
@endif
@if(count($article->comments))
{{ __('Comments') }}
{{ __('Below you will see all the comments, written on this article') }}
@foreach ($article->comments->sortByDesc('created_at') as $comment)