{{ $comment->user->name }} {{ $comment->body }}

{{ $comment->created_at->diffForHumans() }}

@if (auth()->user()?->isTrader()) @if (auth()->id() === $comment->user_id)
@csrf @method('DELETE')
@endif @endif
@if (auth()->user()?->isTrader())
@csrf
@endif @foreach ($comment->replies as $reply)

{{ $reply->user->name }} {{ $reply->body }}

@endforeach