File: //home/armgroup/libs/resources/views/livewire/frontend/product/comment/index.blade.php
<ul class="list-commen p-0 m-0">
@forelse($comments as $comment)
<livewire:frontend.product.comment.single :comment="$comment" :wire:key="$comment->id"/>
@empty
<div class="alert alert-info text-center mt-3">
<span class="fa fa-info-circle"></span> هیچ دیدگاهی برای این محصول ثبت نشده است!
</div>
@endforelse
@if($comments->hasMorePages())
<li class="more" wire:click.prevent="loadMore">نمایش بیشتر</li>
@endif
</ul>