Pending Approvals

Orders Ready for Approval

These physician orders have completed insurance verification and are ready for your final approval to activate patient enrollment.

@if($pendingApprovals->count() > 0)
@foreach($pendingApprovals as $order)

{{ $order->patient->name }}

{{ $order->patient->email }}

@foreach($order->getSelectedServicePaths() as $service) {{ $service }} @endforeach
@if($order->insuranceVerification)

Insurance: {{ $order->insuranceVerification->insurance->provider_name }}

Verified: {{ $order->insuranceVerification->verified_at->format('M d, Y') }}

@endif
Ready to Approve
Review & Approve View Patient Profile
@endforeach
{{ $pendingApprovals->links() }}
@else

No pending approvals

All physician orders have been approved or are still awaiting insurance verification.

Back to Dashboard
@endif