@extends('layouts.app') @section('title', 'Prescriptions') @section('content') {{-- Table of staff details --}}

Prescriptions Record

@foreach ($prescriptions as $prescription) @endforeach
S# Patient Name Patient Age Prescribed By Disease Actions
{{$serial++}} {{$prescription->patient_name}} {{$prescription->patient_age}} {{$prescription->prescription_prescribed_by}} {{$prescription->prescription_disease}} Details
Edit
@method('DELETE') @csrf
@endsection