Pending Doctor Orders

Patients Ready for Physician Orders

These patients have completed their intake assessment and are ready for you to create physician orders for remote care services.

@if($pendingPatients->count() > 0)
@foreach($pendingPatients as $patient) @php $latestIntake = $patient->patientIntakes()->latest()->first(); @endphp

{{ $patient->name }}

{{ $patient->email }}

@if($latestIntake)

Service Path: {{ strtoupper($latestIntake->service_path) }}

Intake Completed: {{ $latestIntake->created_at->format('M d, Y H:i A') }}

@if($latestIntake->has_two_or_more_conditions)

⚠️ Multiple Conditions: Patient has 2+ chronic conditions

@endif
@endif
Ready for Order
Create Physician Order View Patient Profile
@endforeach
@else

No pending orders

All your assigned patients either have completed physician orders or haven't completed their intake yet.

View All Patients
@endif