@foreach($replies as $reply)
User
{{ $reply->user->name }} {{ $reply->created_at->diffForHumans() }}

{{ $reply->comment }}

Reply {{-- Count direct replies to this reply --}} @php $childReplyCount = \App\Models\Comment::where('parent_id', $reply->id)->count(); @endphp @if($childReplyCount > 0) @endif
@endforeach