@extends('layouts.app') @section('content')
Patient: {{ $prescription->patient->user->name }}
Doctor: {{ $prescription->doctor?->user?->name ?? '-' }}
| Medicine | Dosage | Timing | Days | Instructions |
|---|---|---|---|---|
| {{ $medicine->medicine_name }} | {{ $medicine->dosage }} | {{ $medicine->morning ? 'Morning ' : '' }}{{ $medicine->afternoon ? 'Afternoon ' : '' }}{{ $medicine->night ? 'Night' : '' }} | {{ $medicine->duration_days }} | {{ $medicine->instructions }} |