@if(!$notes->isEmpty()) @foreach($notes as $o_note) @php($staff = \App\Models\Admin::where('admin_uuid', $o_note->admin_uuid)->first())
{!! $o_note->title !!}
{{ !empty($staff) ? $staff->title.' '.$staff->firstname.' '.$staff->lastname : '' }} {{time_elapsed_string($o_note->created_at)}}
@endforeach @else

{{ trans('general.no_records') }}

@endif