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