Hello, {{ $prescription->patient->first_name .' '.$prescription->patient->last_name }}
|
Doctor Details: |
Prescription Date&Time: |
Name: {{ @$prescription->doctor->user->first_name .' '. @$prescription->doctor->user->last_name}} |
{{ $prescription->created_at }} |
Contact: {{ @$prescription->doctor->user->mobile }} |
Appointment Date&Time: |
Email: {{ @$prescription->doctor->user->email }} |
{{ $prescription->appointment->appointment_date}} |
|
{{ $prescription->appointment->timeSlot->from .' to '.$prescription->appointment->timeSlot->to }} |
|
Bellow you can find your prescription
|
Symptoms
|
|
{{ $prescription->symptoms }}
|
|
Diagnosis
|
|
{{ $prescription->diagnosis}}
|
|
Medications
|
|
Name
|
Notes
|
@foreach ($medicines as $key=> $item)
{{$key+1 }}. {{ $item->name }}
|
{{ $item->notes }}
|
@endforeach
|
@if ($test_reports->count() !==0 )
Test Reports
|
|
Name
|
Notes
|
@foreach ($test_reports as $key=> $item)
{{$key+1 }}. {{ $item->name }}
|
{{ $item->notes }}
|
@endforeach
|
@endif
We look forward to seeing you soon!
|
{{ AppSetting('title'); }} Support Team
|
@php echo Config::get('app.footer_copy_rights') @endphp
|