@if($comment->attachments && $comment->attachments->count() > 0)
@foreach($comment->attachments as $attachment)
@if($attachment->is_image)
@else
{{ Str::limit($attachment->original_name, 20) }}
({{ $attachment->file_size_human }})
@endif
@endforeach
@endif