@foreach ($comments->other as $another_comment)

name : {{ $another_comment->name }}

message : {{ $another_comment->message }}

{{-- --}} @if ($another_comment->type == 1) {{-- answer --}} @else {{-- reply --}} @endif
@if ($another_comment->type != 1)
@endif
@livewire('tools.panel-comments', ['comments' => $another_comment, 'comment' => $comment, 'blog_id' => $blog_id], key($another_comment->id))
@endforeach