@extends('layouts.app') @section('content')

Prescription

Patient: {{ $prescription->patient->user->name }}

Doctor: {{ $prescription->doctor?->user?->name ?? '-' }}


@foreach($prescription->medicines as $medicine) @endforeach
MedicineDosageTimingDaysInstructions
{{ $medicine->medicine_name }} {{ $medicine->dosage }} {{ $medicine->morning ? 'Morning ' : '' }}{{ $medicine->afternoon ? 'Afternoon ' : '' }}{{ $medicine->night ? 'Night' : '' }} {{ $medicine->duration_days }} {{ $medicine->instructions }}
Notes:
{!! nl2br(e($prescription->notes)) !!}
@if($prescription->follow_up_date)
Follow-up: {{ $prescription->follow_up_date->format('d M Y') }}
@endif
@endsection