@foreach($comments as $key => $comment)
{{$comment->User->full_name ?? ''}}
- 3 hours ago
@if($comment->is_attachment) @else {{$comment->comment ?? ''}} @endif
@csrf
@foreach($comment->getReplies as $reply)
{{$comment->User->full_name ?? ''}}
- 3 hours ago
@if($reply->is_attachment) @else {{$reply->comment ?? ''}} @endif
@endforeach
@endforeach