Notes for {{$candidate->user->first_name}} {{$candidate->user->last_name}}

{{count($candidate->notes)}} Notes

@foreach ($notes as $note)

{{$note->title}}

{!! \Illuminate\Support\Str::limit(strip_tags($note->description), $limit = 50, $end = '...') !!}

{{$note->consultant->first_name}} {{$note->consultant->last_name}}
{{\Carbon\Carbon::parse($note->created_at)->format('d/m/Y')}}
@if($loop->iteration == count($notes) - 2 && $hasMorePages)
@endif @endforeach
@if($active_note) @livewire('dashboard.consultants-dashboard.candidates.notes.view-note', ['note' => $active_note->id], key($active_note->id)) @endif
@push('modals') @livewire('dashboard.consultants-dashboard.candidates.notes.add-new-note-modal') @endpush