@forelse($notes as $note)
{{ ucwords($note->user->name) }} {{ ucfirst($note->created_at->diffForHumans()) }}
{!! ucfirst($note->note) !!}
@if ($note->user_id == $user->id)
@lang('app.delete')
@endif
@empty
@lang('messages.noRecordFound')
@endforelse