@foreach($comments as $comment)
{{ ucwords($comment->user->name) }} {{ ucfirst($comment->created_at->diffForHumans()) }}
{!! ucfirst($comment->comment) !!}
@if($comment->user->id == $user->id || $user->can('delete_tasks'))
@lang('app.delete')
@endif
@endforeach