{{ trans('panel.comments') }}

{{-- Form --}} @include('design_1.web.components.comments.submit_form', [ 'commentForItemId' => $post->id, 'commentForItemName' => "blog_id", ]) {{-- Comments Lists --}} @if(!empty($postComments) and count($postComments['comments']))
@include('design_1.web.components.comments.all_cards', [ 'comments' => $postComments['comments'], 'commentForItemId' => $post->id, 'commentForItemName' => "blog_id", ])
@if(!empty($postComments['has_more']))
@endif @endif
@include('design_1.web.components.comments.reply_form')