Patient No: {{ $patient->patient_no ?? '-' }}
Name: {{ $patient->name }}
Mobile: {{ $patient->mobile ?? '-' }}
Email: {{ $patient->email ?? '-' }}
Age: {{ $patient->age ?? '-' }}
Gender: {{ ucfirst($patient->gender) ?? '-' }}
Caste: {{ $patient->caste->name ?? '-' }}
Occupation: {{ $patient->occupation->name ?? '-' }}
Address: {{ $patient->address ?? '-' }}
Aadhaar No: {{ $patient->aadhaar_no ?? '-' }}
Abha No: {{ $patient->abha_no ?? '-' }}
Case No: {{ $patient->latestVisit->case_no ?? '-' }}
Symptoms: {{ $patient->latestVisit?->display_symptoms ?? '-' }}
Vital Signs
@if ($patient->latestVisit && $patient->latestVisit->vitalSigns->isNotEmpty())No vital signs recorded.
@endifDate & Time: {{ $patient->latestVisit->appointment_datetime }}
@if ($patient->latestVisit && $patient->latestVisit->patientVisitDocuments->isNotEmpty())Uploaded medical reports:
| Medicine Categoty | Medicine Name | Schedule | Days | Action |
|---|---|---|---|---|
|
|
|
|
@if (!$isReadOnly) @endif | |
|
|
|
|
@if (!$isReadOnly) @endif |
No treatment history available.
@else| Case No | Medicines | Notes | Vital Signs | Symptoms | Date & Time |
|---|---|---|---|---|---|
| {{ $visit->case_no }} |
@if ($visit->prescriptions->isEmpty())
No medicines prescribed
@else
|
{{ $visit->note ?? '-' }} |
@if ($visit && $visit->vitalSigns->isNotEmpty())
No vital signs recorded. @endif |
{{-- @php dd($visit->id,$visit->other_symptom ,$visit->symptoms->pluck('id')->toArray()); @endphp --}} {{ $visit?->display_symptoms }} | {{ $visit->appointment_datetime }} |