Review and manage clinic transfer requests for {{ $clinic->name }}
Total Requests
{{ $stats['total'] }}
Incoming
{{ $stats['incoming'] }}
To your clinic
Outgoing
{{ $stats['outgoing'] }}
From your clinic
Pending
{{ $stats['pending'] }}
Approved
{{ $stats['approved'] }}
Rejected
{{ $stats['rejected'] }}
| Expectant Mother | Current → Requested Clinic | Reason | Status | Submitted | Actions |
|---|---|---|---|---|---|
|
{{ $request->user->name }}
{{ $request->user->email }}
|
@if($request->requested_clinic_id === $clinicId)
Incoming
@else
Outgoing
@endif
{{ $request->currentClinic->name }}
{{ $request->requestedClinic->name }}
|
@if($request->isPending()) Pending @elseif($request->status === 'INFO_REQUESTED') Info Requested @elseif($request->isApproved()) Approved @elseif($request->status === 'WITHDRAWN') Withdrawn @else Rejected @endif |
{{ $request->created_at->format('M d, Y') }}
{{ $request->created_at->format('g:i A') }}
|
View Details
@if($request->requested_clinic_id === $clinicId)
@if($request->isPending())
Waiting for additional information
@if($request->decisionMaker)
@else
Requested by {{ $request->decisionMaker->name }}
@endif
@if($request->decisionMaker)
Reviewed by {{ $request->decisionMaker->name }}
@endif
@else
{{ $request->updated_at->format('M d, Y g:i A') }}
@endif
View Only - Managed by {{ $request->requestedClinic->name }}
@if($request->status === 'APPROVED' || $request->status === 'REJECTED')
@if($request->decisionMaker)
Reviewed by {{ $request->decisionMaker->name }}
@endif
@endif
{{ $request->updated_at->format('M d, Y g:i A') }}
@endif
|
|
No Requests FoundThere are no clinic change requests to display. |
|||||
Expectant Mother: {{ $selectedRequest->user->name }}
Email: {{ $selectedRequest->user->email }}
Current Clinic: {{ $selectedRequest->currentClinic->name }}
Requested Clinic: {{ $selectedRequest->requestedClinic->name }}
Reason: {{ $selectedRequest->reason }}