{{ $condition->name }}

{{ $condition->description }}

@if($condition->treatments->count() > 0)

Available Treatments

@foreach($condition->treatments as $treatment)

{{ $treatment->name }}

@if(isset($treatment->type)) @if($treatment->type === 'urgent') Urgent Care @elseif($treatment->type === 'consultation') Consultation @elseif($treatment->type === 'specialized') Specialized @endif @endif

{{ Str::limit($treatment->description, 100) }}

View Details
@csrf
@endforeach

Common Medications:

    @forelse($condition->primaryUses->take(3) as $primaryUse)
  • {{ $primaryUse->medicationBase->generic_name }}
  • @empty
  • No specific medications listed for this condition.
  • @endforelse
@endif

How It Works

1

Select a Treatment

Choose the treatment that best fits your needs.

2

Choose a Subscription Plan

Select a plan that works for you and your family.

3

Answer Medical Questions

Provide information about your condition to help our doctors provide the best care.

4

Complete Payment

Securely pay for your treatment and subscription.

5

Get Treated

Our doctors will review your case and provide treatment, including prescriptions if needed.

Common Symptoms

@if($condition->symptoms && count($condition->symptoms) > 0)
    @foreach($condition->symptoms as $symptom)
  • {{ $symptom->name }}
  • @endforeach
@else

No specific symptoms listed for this condition.

@endif