@php $comments = App\Models\Comment::where('id' , $comments['id'])->first() ; @endphp @if (!is_null( $comments)) @foreach ($comments->other as $other_comment)
@if ($other_comment->status == 1)
{{ $other_comment->name }}

{{ $other_comment->message }}

{{ how_long($other_comment->created_at) }}
@endif
@if ($other_comment->status == 1)
@endif
@include('livewire.home._comment', ['comments' => $other_comment, 'comment' => $comment, 'blog_id' => $blog_id])
@endforeach @endif