Clinical Notes

@unless($admission->status === 'Discharged') @endunless
@if($showForm)
@if(count($this->quickNotes[$activeTab] ?? []))
@foreach($this->quickNotes[$activeTab] as $quickNote) @endforeach
@endif
@endif
@forelse($activeTab === 'doctor' ? $this->doctorNotes : ($activeTab === 'nurse' ? $this->nurseNotes : ($activeTab === 'procedure' ? $this->procedureNotes : $this->progressNotes)) as $note)
{{ $note->note_type }} {{ $note->note_date->format('d M Y, h:i A') }} @if($note->is_locked) @endif
@if($note->isEditable() && $admission->status !== 'Discharged')
@endif

{{ $note->content }}

@if($note->creator)

Recorded by: {{ $note->creator->name }}

@endif
@empty

No {{ $activeTab }} notes recorded yet.

@endforelse