@php
$comments = App\Models\Comment::find($comments['id']);
$counter = count($comments->other) ;
@endphp
@foreach ($comments->other as $other_comment)
@if ($other_comment->status == 1)
{{Str::limit($other_comment->name, 25, '...') }}
{{ how_long($other_comment->created_at) }}
{{ $other_comment->message }}
@endif
@include('livewire.home._comment', ['comments' => $other_comment, 'comment' => $comment, 'blog_id' => $blog_id])
@endforeach