Approve Physician Order

Ready for Approval

Patient Information

Name: {{ $doctorOrder->patient->name }}

Email: {{ $doctorOrder->patient->email }}

Primary Diagnosis: {{ $doctorOrder->primary_diagnosis ?? 'N/A' }}

Selected Service Paths

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

Insurance Verification Results

Provider: {{ $doctorOrder->insuranceVerification->insurance->provider_name }}

Member ID: {{ $doctorOrder->insuranceVerification->member_id }}

Plan Type: {{ $doctorOrder->insuranceVerification->plan_type }}

CPT Code Coverage
@foreach($doctorOrder->insuranceVerification->cptCodeVerifications as $cpt)

{{ $cpt->cpt_code }}

{{ $cpt->cpt_description }}

{{ $cpt->getStatusLabel() }}
@endforeach
@endif

Ready to Approve

Insurance verification is complete and all CPT codes have been verified. Click "Approve Order" below to activate patient enrollment in the remote monitoring program.

Approve Order Cancel