@foreach ($comments as $comment) {{-- {{dd( $comment)}} --}}
{{-- {{ $comment->customer->name }}: {{ $comment->content }} --}} {{Auth::guard('vendor')->user()->vendor_name}}: {{ $comment->body }}
{{ $comment->created_at->diffForHumans() }} {{-- Recursive call to display nested replies --}} @if($comment->replies->count())
@include('vendor.comments.partials._comment', ['comments' => $comment->replies])
@endif
@endforeach