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 }}
| 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
|
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' }}
{{ $answer->question->question }}
Answer: {{ $answer->answer }}
@if($answer->question->type === 'multiple_choice' && $answer->question->questionOptions->isNotEmpty())Options: {{ $answer->question->questionOptions->pluck('option_value')->implode(', ') }}
@endifPain Type:
{{ $patient->painAssessment->pain_type }}
@if($patient->painAssessment->pain_type_other)Other: {{ $patient->painAssessment->pain_type_other }}
@endifPain Location:
{{ $patient->painAssessment->pain_location }}
@if($patient->painAssessment->pain_location_other)Other: {{ $patient->painAssessment->pain_location_other }}
@endifPain 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 }}
@endifPain Relief:
{{ $patient->painAssessment->pain_relief }}
@if($patient->painAssessment->pain_relief_other)Other: {{ $patient->painAssessment->pain_relief_other }}
@endif| Allergen | Reaction |
|---|---|
| {{ $allergy->allergen }} | {{ $allergy->reaction }} |
| Medication Name | Taken Before | Effectiveness |
|---|---|---|
| {{ $pm->medication_name }} | {{ $pm->taken_before ? 'Yes' : 'No' }} | {{ $pm->effectiveness }} |
| Type | Date | Details |
|---|---|---|
| {{ $record->record_type }} | {{ $record->record_date?->format('Y-m-d') }} | {{ $record->details }} |
| Date | Status | Doctor | Notes |
|---|---|---|---|
| {{ $consultation->scheduled_at?->format('F j, Y H:i') }} | {{ $consultation->status }} | {{ $consultation->doctor->name }} | {{ $consultation->notes }} |
| Date | Medication | Status |
|---|---|---|
| {{ $prescription->created_at?->format('F j, Y') }} |
@foreach ($prescription->items as $item)
|
{{ config('status.prescription')[$prescription->status] }} |