{{ __('Patient Details') }}

{{ $patient->name }}

Personal Information

Email: {{ $patient->email }}

Phone: {{ $patient->phone }}

Date of Birth: {{ $patient->dob?->format('F j, Y') }}

Gender: {{ $patient->gender }}

Address: {{ $patient->address1 }} {{ $patient->address2 ?? ''}} {{ $patient->city }} {{ $patient->state }} {{ $patient->zip }}

Services

@foreach($patient->services as $service) @endforeach
Service Status Created At Video
{{ $service->name }} {{ $service->pivot->status }} {{ $service->pivot->created_at?->format('F j, Y H:i') }} @if($service->pivot->video_path) Play Video @else No video uploaded @endif

Questionnaires

General Health Information
Do you have any chronic conditions? {{ $patient->healthQuestion?->has_chronic_conditions ? 'Yes' : 'No' }}
Do you use tobacco, alcohol, or drugs? {{ $patient->healthQuestion?->uses_tobacco_alcohol_drugs ? 'Yes' : 'No' }}
Are you pregnant? {{ $patient->healthQuestion?->is_pregnant ? 'Yes' : 'No' }}
Have you had any recent surgeries? {{ $patient->healthQuestion?->had_recent_surgeries ? 'Yes' : 'No' }}
Do you have any health concerns? {{ $patient->healthQuestion?->has_health_concerns ? 'Yes' : 'No' }}
@if ($patient->additionalInformation)
Additional Information

Concerns: {{ $patient->additionalInformation->additional_concerns }}

Daily Activities Impact: {{ $patient->additionalInformation->daily_activities_impact }}

Sleep Impact: {{ $patient->additionalInformation->sleep_impact }}

Mobility Impact: {{ $patient->additionalInformation->mobility_impact }}

Emotional Impact: {{ $patient->additionalInformation->emotional_impact }}

Associated Symptoms: {{ $patient->additionalInformation->associated_symptoms }}

Systemic Symptoms: {{ $patient->additionalInformation->systemic_symptoms ? 'Yes' : 'No' }}

@endif
@foreach($patient->userServices as $service)
{{ $service->service->name }}
@foreach($service->answers as $answer)

{{ $answer->question->question }}

Answer: {{ $answer->answer }}

@if($answer->question->type === 'multiple_choice' && $answer->question->questionOptions->isNotEmpty())

Options: {{ $answer->question->questionOptions->pluck('option_value')->implode(', ') }}

@endif
@endforeach
@endforeach @if($patient->painAssessment)

Pain Assessment

Pain Type:

{{ $patient->painAssessment->pain_type }}

@if($patient->painAssessment->pain_type_other)

Other: {{ $patient->painAssessment->pain_type_other }}

@endif

Pain Location:

{{ $patient->painAssessment->pain_location }}

@if($patient->painAssessment->pain_location_other)

Other: {{ $patient->painAssessment->pain_location_other }}

@endif

Pain Intensity:

{{ $patient->painAssessment->pain_intensity }} / 10

Pain Duration:

{{ $patient->painAssessment->pain_duration }}

Pain Start Date:

{{ \Carbon\Carbon::parse($patient->painAssessment->pain_start)->format('F d, Y') }}

Pain Frequency:

{{ $patient->painAssessment->pain_frequency }}

Pain Triggers:

{{ $patient->painAssessment->pain_triggers }}

@if($patient->painAssessment->pain_triggers_other)

Other: {{ $patient->painAssessment->pain_triggers_other }}

@endif

Pain Relief:

{{ $patient->painAssessment->pain_relief }}

@if($patient->painAssessment->pain_relief_other)

Other: {{ $patient->painAssessment->pain_relief_other }}

@endif
@endif

Allergies

@foreach($patient->allergies as $allergy) @endforeach
Allergen Reaction
{{ $allergy->allergen }} {{ $allergy->reaction }}

Preferred Medications

@foreach($patient->preferredMedications as $pm) @endforeach
Medication Name Taken Before Effectiveness
{{ $pm->medication_name }} {{ $pm->taken_before ? 'Yes' : 'No' }} {{ $pm->effectiveness }}

Medical Records

@foreach($medicalRecords as $record) @endforeach
Type Date Details
{{ $record->record_type }} {{ $record->record_date?->format('Y-m-d') }} {{ $record->details }}

Consultations

@foreach($consultations as $consultation) @endforeach
Date Status Doctor Notes
{{ $consultation->scheduled_at?->format('F j, Y H:i') }} {{ $consultation->status }} {{ $consultation->doctor->name }} {{ $consultation->notes }}

Prescriptions

@foreach($prescriptions as $prescription) @endforeach
Date Medication Status
{{ $prescription->created_at?->format('F j, Y') }} @foreach ($prescription->items as $item) @endforeach {{ config('status.prescription')[$prescription->status] }}
Schedule Consultation Create Prescription Create Non Standard Prescription