@extends('layouts.app') @section('title', 'My Prescriptions') @section('content')

My Prescriptions

Back to Dashboard
@foreach($prescriptions as $prescription) @endforeach
Prescription # Doctor Date Diagnosis Actions
{{ $prescription->prescription_number }} {{ $prescription->doctor->full_name }} {{ $prescription->created_at->format('M d, Y') }} {{ $prescription->diagnosis ?? 'N/A' }} View Download PDF
@endsection