@php $patientOptions = collect($patients)->map(fn ($patient) => [ 'value' => (string) $patient->id, 'label' => $patient->fullName().' ('.$patient->patient_number.')', 'search' => trim($patient->fullName().' '.$patient->patient_number.' '.($patient->phone ?? '').' '.($patient->email ?? '')), ])->all(); @endphp

Ambulance / New call

Log a new call

Creates a dispatch board entry — not a desk walk-in queue ticket for Call next.

@if (session('error'))
{{ session('error') }}
@endif
@csrf
@error('branch_id')

{{ $message }}

@enderror
@error('patient_id')

{{ $message }}

@enderror

Register the patient first if they are not in the system yet.

@error('reason')

{{ $message }}

@enderror
@error('location')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror
Cancel