@php $u = $comment->user; $avatar = $u->avatar_url ?? asset('images/default-male-avatar.png'); @endphp
{{ $u->name ?? $u->username ?? 'عضو' }}
{{ $comment->formatted_time }}
@if(!empty($comment->can_delete)) @endif
{{ $comment->content }}
{{-- Reply form --}} {{-- Replies --}}
@foreach($comment->replies()->with('user')->latest()->take(10)->get() as $reply) @include('general.posts.partials.reply-item', ['reply'=>$reply]) @endforeach