@extends('layouts.app') @section('title', 'Prescription') @section('content') {{-- Table of specific prescription details --}}

Prescription Details:

Patient Name {{$prescription->patient_name}}
Patient Age {{$prescription->patient_age}}
Prescription Prescriber {{$prescription->prescription_prescribed_by}}
Prescription Disease {{$prescription->prescription_disease}}
Medicine Details:
    @foreach ($medicinesPurchased as $medicine)
  • {{$medicine->medicine_name}} ({{$medicine->medicine_dose}}) x{{$medicine->sale_quantity}}
  • @endforeach
@endsection