Appointment Report

Patient Information

@if (!empty($appointment->patient->gender)) @endif @if (!empty($appointment->patient->blood_group)) @endif
Name {{ $appointment->patient->name }}
Gender {{ $appointment->patient->gender }}
Blood Group {{ $appointment->patient->blood_group ?? 'Unknown' }}

Appointment Details

{{-- --}}
Doctor Name {{ $appointment->doctor->name }}
Appointment Type {{ $appointment->appointment_type->display_name }}
Date {{ date('d-m-Y', strtotime($appointment->date)) }}
Time {{ $appointment->time }}

Patient Health

@if (!empty($appointment->patient_healths)) @foreach ($appointment->patient_healths as $patient_health) @endforeach
No Name Value
{{ $patient_health->id ?? ' ' }} {{ strip_tags($patient_health->healths->name) ?? ' ' }} {{ $patient_health->value ?? ' ' }}
@else

No diseases listed.

@endif

Diseases

@if (!empty($appointment->diseases)) @foreach ($appointment->diseases as $disease) @endforeach
No Name Description
{{ $disease->id ?? ' ' }} {{ $disease->name ?? ' ' }} {{ strip_tags($disease->description) ?? '' }}
@else

No diseases listed.

@endif

Test Report

@if (!empty($appointment->tests)) @foreach ($appointment->tests as $test) @endforeach
Name Description
{{ $test->name ?? ' ' }} {{ strip_tags($test->description) ?? '' }}
@else

No tests listed.

@endif

Medicines

@if (!empty($appointment->medicines)) @foreach ($appointment->medicines as $medicine) @endforeach
ID Name Dosage Frequency Last Updated
{{ $medicine->id ?? ' ' }} {{ $medicine->name ?? ' ' }} {{ $medicine->dosage ?? ' ' }} {{ $medicine->frequency ?? ' ' }} {{ $medicine->updated_at ?? ' ' }}
@else

No medicines listed.

@endif
{{--

Additional Information

{{ $appointment['additional_info'] }}

--}}