Clinic Change Request Details

Request #{{ $request->id }}

{{ $request->status_display }}

Request Information

{{ $request->currentClinic->name }}

{{ $request->requestedClinic->name }}

{{ $request->urgency }}

{{ $request->created_at->format('M d, Y g:i A') }}

{{ $request->status_display }}

@if(in_array($request->status, ['APPROVED', 'REJECTED']))

{{ $request->updated_at->format('M d, Y g:i A') }}

@endif

{{ $request->reason }}

@if($request->urgency === 'URGENT' && $request->urgency_justification)

{{ $request->urgency_justification }}

@endif
@if($request->messages->count() > 0)

Communication History

@foreach($request->messages as $message)
@if($message->author->role === 'head_nurse') @else @endif
{{ $message->author->name }} {{ $message->created_at->format('M d, Y g:i A') }}

{{ $message->message }}

@endforeach
@endif @if($request->attachments->count() > 0)

Supporting Documents ({{ $request->attachments->count() }})

@foreach($request->attachments as $attachment)
@if($attachment->isImage()) @elseif($attachment->isPdf()) @else @endif

{{ $attachment->original_name }}

{{ $attachment->human_size }} • Uploaded {{ $attachment->created_at->format('M d, Y g:i A') }}

@endforeach
@endif @if(in_array($request->status, ['APPROVED', 'REJECTED']))

Decision

@if($request->decisionMaker)

{{ $request->decisionMaker->name }}

@endif @if($request->decision_note)

{{ $request->decision_note }}

@endif @if($request->status === 'APPROVED' && $request->decision_effective_date)

{{ $request->decision_effective_date->format('M d, Y') }}

@endif
@endif
Back to History @if($request->status === 'INFO_REQUESTED') Provide Information @endif