@include('front.landing-pages.medications.medical-intake-header')

Medications

{{ $plan['name'] }}

@if($cartItems->isEmpty())

No medications added to cart.

@else @foreach ($cartItems as $item) @endforeach
Name Strength Dosage Form Categories Action
{{ $item['brand_name'] }} {{ $item['strength'] }} {{ $item['dosage_form'] }} {{ $item['categories']->implode(', ') }}
@endif
@if($cartItems->isNotEmpty())

Comprehensive Health Screening Form

@php $cardioVascular = collect(['Cardiovascular', 'Heart Conditions', 'Blood Pressure', 'Anticoagulation', 'Cholesterol Management']); $hasCardio = $categories->intersect($cardioVascular)->isNotEmpty(); @endphp @if($hasCardio)

Cardiovascular Assessment

@endif @php $neurological = collect(['Neurological', 'Seizures', 'RLS']); $hasNeurological = $categories->intersect($neurological)->isNotEmpty(); @endphp @if($hasNeurological)

Neurological Assessment

@endif @if($categories->contains('Gastrointestinal'))

Gastrointestinal Assessment

@endif @if($categories->contains('Endocrine/Hormonal'))

Endocrine Assessment

@endif @php $pc = collect(['Preventive Care', 'Osteoporosis Prevention']); $hasPreventiveCare = $categories->intersect($pc)->isNotEmpty(); @endphp @if($hasPreventiveCare)

Preventive Care Assessment

@endif @php $infection = collect(['Prophylaxis', 'Bacterial', 'Fungal', 'Viral']); $hasInfection = $categories->intersect($infection)->isNotEmpty(); @endphp @if($hasInfection)

Infection Prevention Assessment

@endif @if($categories->contains('Skin/Dermatological'))

Dermatological Assessment

@endif @if($categories->contains('Immunology & Allergies'))

Immunology Assessment

@endif @php $mentalHealth = collect(['Mental Health', 'Anxiety Disorders', 'Depression']); $hasMentalHealth = $categories->intersect($mentalHealth)->isNotEmpty(); @endphp @if($hasMentalHealth)

Mental Health Assessment

@endif @php $pain = collect(['Pain & Inflammation', 'Migraine', 'Musculoskeletal']); $hasPain = $categories->intersect($pain)->isNotEmpty(); @endphp @if($hasPain)

Pain Assessment

@endif @php $respiratory = collect(['Respiratory', 'Nasal Conditions']); $hasRespiratory = $categories->intersect($respiratory)->isNotEmpty(); @endphp @if($hasRespiratory)

Respiratory Assessment

@endif @php $prevention = collect(['Surgical Prophylaxis', 'UTI Prevention', 'Stroke Prevention']); $hasPrevention = $categories->intersect($prevention)->isNotEmpty(); @endphp @if($hasPrevention)

Prevention Assessment

@endif @if($categories->contains('Weight Management'))

Weight Management Assessment

@endif

Additional Information

Current Medication

Allergies

@endif
@include('front.landing-pages.medications.how-it-works')