@if($model->comment != 'active' AND config('settings.comment') != 'active')
{{__(':total comments',['total' => $comments->count()])}}
@auth @include('livewire.partials.comment-form',[ 'method'=>'postComment', 'state'=>'newCommentState', 'inputId'=> 'comment', 'inputLabel'=> 'Your comment', 'button'=>'Submit comment' ]) @else {{__('Log in to comment !')}} @endauth @if($comments->count()) @foreach($comments as $comment) @endforeach {{$comments->links()}} @else

{{__('No comments yet!')}}

@endif @endif