Nursing Station
Record vitals and update patient information
Nurse: {{ auth()->user()->name }}
@if (session()->has('message'))
{{ session('message') }}
@endif
@if (session()->has('error'))
{{ session('error') }}
@endif
Instructions: Select a patient visit to record vitals, update medical history, and allergies. After saving, the patient will be moved to "Waiting for Doctor" status.
Patients Waiting for Nursing
@if($visits->count() > 0)
@foreach($visits as $visit)
{{ $visit->patient->full_name }}
{{ $visit->patient->patient_id }}
{{ $visit->status_label }}
Checked in: {{ $visit->checked_in_at->format('h:i A') }}
@if($visit->chief_complaint)
{{ strlen($visit->chief_complaint) > 60 ? substr($visit->chief_complaint, 0, 60) . '...' : $visit->chief_complaint }}
@endif
Record Vitals
@endforeach
@else
No patients waiting
All patients have been processed or are waiting for other departments.
@endif
@if($visits->hasPages())
{{ $visits->links() }}
@endif