- <div class="comment-container" comment-container>
- @foreach($page->comments as $comment)
- @include('comments.comment', ['comment' => $comment])
+ <div refs="page-comments@comment-count-bar" class="grid half left-focus v-center no-row-gap">
+ <h5 refs="page-comments@comments-title">{{ trans_choice('entities.comment_count', $commentTree->count(), ['count' => $commentTree->count()]) }}</h5>
+ @if ($commentTree->empty() && userCan('comment-create-all'))
+ <div class="text-m-right" refs="page-comments@add-button-container">
+ <button type="button"
+ refs="page-comments@add-comment-button"
+ class="button outline">{{ trans('entities.comment_add') }}</button>
+ </div>
+ @endif
+ </div>
+
+ <div refs="page-comments@commentContainer" class="comment-container">
+ @foreach($commentTree->get() as $branch)
+ @include('comments.comment-branch', ['branch' => $branch, 'readOnly' => false])