@extends('layouts.app') @section('title', 'Create Prescription') @section('content')

Create Prescription

Back to Dashboard

Patient Information

Name: {{ $appointment->patient->full_name }}
ID: {{ $appointment->patient->patient_id }}
DOB: {{ $appointment->patient->date_of_birth?->format('Y-m-d') ?? 'N/A' }}
Gender: {{ $appointment->patient->gender ?? 'N/A' }}
@csrf

Prescription Items

@endsection