@if ($notes->count() > 0) @foreach ($notes as $note)
{!! $note->comment !!}
Entered At: {{ \Carbon\Carbon::parse($note->created_at)->format('d-m-Y g:i A') }}
Entered By : {{ $note->user ? $note->user->given_names . ' ' . $note->user->surname : 'Unknown' }}
@endforeach @else No note entries found.. @endif