Name: {{ $patient->name }}
Email: {{ $patient->email }}
Phone: {{ $patient->phone ?? 'Not provided' }}
Date of Birth: {{ $patient->dob ? date('M d, Y', strtotime($patient->dob)) : 'Not provided' }}
Gender: {{ $patient->gender ? ($patient->gender == 'M' ? 'Male' : ($patient->gender == 'F' ? 'Female' : 'Other')) : 'Not provided' }}
Address: {{ $patient->address1 ?? 'Not provided' }}
@if($patient->address2)Address 2: {{ $patient->address2 }}
@endifCity: {{ $patient->city ?? 'Not provided' }}
State: {{ $patient->state ?? 'Not provided' }}
ZIP: {{ $patient->zip ?? 'Not provided' }}
Plan: {{ $subscription->plan->name ?? 'N/A' }}
Status: {{ ucfirst($subscription->status) }}
Start Date: {{ $subscription->starts_at ? date('M d, Y', strtotime($subscription->starts_at)) : 'Not started' }}
End Date: {{ $subscription->ends_at ? date('M d, Y', strtotime($subscription->ends_at)) : 'No end date' }}
Enrolled On: {{ date('M d, Y', strtotime($subscription->created_at)) }}
@if($subscription->status === 'pending_payment')| Condition | Status | Diagnosed | Reported |
|---|---|---|---|
|
{{ $condition->condition_name }}
@if($condition->notes)
{{ Str::limit($condition->notes, 50) }}
@endif
|
{{ ucfirst($condition->status) }} | {{ $condition->diagnosed_at ? date('M d, Y', strtotime($condition->diagnosed_at)) : 'Not specified' }} | {{ date('M d, Y', strtotime($condition->created_at)) }} |
No medical conditions reported yet.
| Type | Status | Submitted | Action |
|---|---|---|---|
|
{{ $questionnaire->treatment ? $questionnaire->treatment->name : 'General' }}
|
{{ ucfirst($questionnaire->status) }} | {{ date('M d, Y', strtotime($questionnaire->created_at)) }} |
|
No medical questionnaires submitted yet.
| Medication | Status | Ordered | Action |
|---|---|---|---|
|
{{ $order->medication->name ?? 'N/A' }}
|
{{ ucfirst($order->status) }} | {{ date('M d, Y', strtotime($order->created_at)) }} |
|
No medication orders placed yet.