@foreach ($comments->other as $other_comment)
@if ($other_comment->status == 1)

name : {{ $other_comment->name }}

message : {{ $other_comment->message }}

@endif
@livewire('tools.home-comments', ['comments' => $other_comment, 'comment' => $comment, 'blog_id' => $blog_id], key($other_comment->id))
@endforeach