Start Consultation Process

Your Consultation Journey

Complete these steps to get the care you need from our healthcare providers.

Step 1: Schedule
Step 2: Health Info
Step 3: Questionnaire
@if($step == 1)
@if(count($pendingConsultations) > 0)

You Have Pending Consultations

You already have scheduled consultations. You can continue with one of these or schedule a new one.

Your Pending Consultations
@foreach($pendingConsultations as $consultation)

{{ $consultation->formatDateTime('scheduled_at', 'F j, Y g:i A') }}

Type: {{ ucfirst($consultation->type) }}

@if($consultation->notes)

Notes: {{ $consultation->notes }}

@endif
Continue
@endforeach
@endif

Schedule Your Consultation

Let's schedule a time for your consultation with one of our healthcare providers.

When would you like your consultation?

Consultation Type

Additional Notes (Optional)

Schedule and Continue
@elseif($step == 2)
@if($activeConsultation)

Active Consultation

You're continuing with your consultation scheduled for {{ $activeConsultation->formatDateTime('scheduled_at', 'F j, Y g:i A') }}

@endif

Tell Us About Your Health

To provide you with the best care, we need to know about your health conditions and medications.

Add a Medical Condition

Tell us about any medical conditions you have, such as diabetes, hypertension, or asthma.

Add Medical Condition

Request Medication

Request prescription or over-the-counter medications that you need.

Request Medication

Already added your health information?

Continue to Questionnaire
@elseif($step == 3)
@if($activeConsultation)

Upcoming Consultation

Status: Pending
{{ $activeConsultation->formatDate('scheduled_at', 'F j, Y') }}
{{ $activeConsultation->formatDate('scheduled_at', 'g:i A') }}
{{ ucfirst($activeConsultation->type) }} Consultation

Your consultation is pending. We'll keep you updated by email, phone, or text.

@endif

Complete Your Health Questionnaire

Final step! Answer some questions about your health to help our providers give you the best care.

Complete Health Questionnaire
@endif