@foreach($comments as $comment)
parent_id != null) style="margin-left: 2.5rem;" @endif>
{{ $comment->user->name ?? $comment->user->username ?? 'User' }} • {{ $comment->created_at ? $comment->created_at->diffForHumans() : '' }}

{{ $comment->body }}

@if(isset($comment->replies) && count($comment->replies) > 0)
@include('complain.posts.partials.commentsDisplay', ['comments' => $comment->replies, 'post_id' => $post_id])
@endif
@endforeach