@forelse($comments as $comment)
{{ ucwords($comment->user->name) }} {{ ucfirst($comment->created_at->diffForHumans()) }}
{!! ucfirst($comment->comment) !!}
@if(!is_null($comment->comment_file)) @foreach ($comment->comment_file as $file )
  • {{ $file->filename }}
    @if(is_null($file->external_link)) @endif
  • @endforeach @endif
    {{--
    @lang('app.delete')
    --}}
    @empty
    @lang('messages.noRecordFound')
    @endforelse