{{ $comment->user[config('filament-comments.user_name_attribute')] }}
{{ $comment->created_at->diffForHumans() }}
@if (auth()->user()->can('delete', $comment))
@endif
@if(config('filament-comments.editor') === 'markdown')
{{ Str::of($comment->comment)->markdown()->toHtmlString() }}
@else
{{ Str::of($comment->comment)->toHtmlString() }}
@endif