| Prescription Id | Date | Patient | Patient Id | Medicine | Options |
|---|---|---|---|---|---|
| {{ $item->id }} | {{ Carbon\Carbon::parse($item->date)->format('d,M Y h:i') }} | {{ $item->patient->name }} | {{ $item->patient_id }} |
@foreach (App\DoctorPrescriptionMedicine::where('prescription_id',$item->id)->get() as $med)
{{ $med->medicine }} - {{ $med->dosage }}mg | {{ $med->frequency }} |
View Prescription {{-- Edit Prescription --}} @if (Auth::user()->role_id == 4) @endif {{-- Print --}} |