Name: {{ $clinic->name }}
Address: {{ $clinic->address ?? 'Not provided' }}
Phone: {{ $clinic->phone ?? 'Not provided' }}
Email: {{ $clinic->email ?? 'Not provided' }}
| Name | Staff ID | Start Date | Status |
|---|---|---|---|
| {{ $nurse->name }} | {{ $nurse->staff_id ?? 'N/A' }} | {{ $nurse->pivot->start_date ? \Carbon\Carbon::parse($nurse->pivot->start_date)->format('M j, Y') : 'N/A' }} | @if($nurse->pivot->end_date) Ended @else Active @endif |
No nurses assigned to this zone.
@endif| Name | Series No. | Phone | Assigned Date | Status |
|---|---|---|---|---|
| {{ $assignment->expectantMother->mother_full_name ?? 'N/A' }} | {{ $assignment->expectantMother->series_number ?? 'N/A' }} | {{ $assignment->expectantMother->phone_number ?? 'N/A' }} | {{ $assignment->assigned_at ? \Carbon\Carbon::parse($assignment->assigned_at)->format('M j, Y') : 'N/A' }} | @if($assignment->ended_at) Ended @else Active @endif |
No mothers assigned to this zone.
@endifNo zones found for this clinic.