Pending Insurance Verifications

Insurance Verifications Pending Review

@if($pendingOrders->isEmpty())

No pending insurance verifications.

Back to Dashboard
@else
@foreach($pendingOrders as $order) @php $hasActiveInsurance = $order->patient->insurances() ->where('status', 'active') ->exists(); @endphp

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

@if(!$hasActiveInsurance) No Insurance @endif

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

Doctor: {{ $order->doctor->name }}

Services: {{ implode(', ', $order->getSelectedServicePaths()) }}

Created: {{ $order->created_at->format('M d, Y H:i A') }}

Pending Verification
@if($hasActiveInsurance) Verify Insurance @else Add Insurance @endif
@endforeach
{{ $pendingOrders->links() }}
@endif