{{ __('Patient Details') }}: {{ $patient->name }}

Edit Patient Payment Methods

Patient Information

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 }}

@endif

City: {{ $patient->city ?? 'Not provided' }}

State: {{ $patient->state ?? 'Not provided' }}

ZIP: {{ $patient->zip ?? 'Not provided' }}

Subscription Information

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')
Activate Subscription
@endif

Medical Conditions

@if($medicalConditions->count() > 0)
@foreach($medicalConditions as $condition) @endforeach
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)) }}
@else

No medical conditions reported yet.

@endif

Medical Questionnaires

New Questionnaire
@if($questionnaires->count() > 0)
@foreach($questionnaires as $questionnaire) @endforeach
Type Status Submitted Action
{{ $questionnaire->treatment ? $questionnaire->treatment->name : 'General' }}
{{ ucfirst($questionnaire->status) }} {{ date('M d, Y', strtotime($questionnaire->created_at)) }} View Details
@else

No medical questionnaires submitted yet.

@endif

Medication Orders

New Medication Order
@if($medicationOrders->count() > 0)
@foreach($medicationOrders as $order) @endforeach
Medication Status Ordered Action
{{ $order->medication->name ?? 'N/A' }}
{{ ucfirst($order->status) }} {{ date('M d, Y', strtotime($order->created_at)) }} View Details
@else

No medication orders placed yet.

@endif