{{-- resources/views/admin/prescriptions/create.blade.php --}} @extends('layouts.app') @section('content')
| Prescription No | Status | Prescribed By | Date |
|---|---|---|---|
| {{ $prescription->prescription_no }} |
{{
strtoupper(
str_replace(
'_',
' ',
$prescription->status
)
)
}}
|
{{ $prescription->prescribed_by ?? 'System' }} | {{ !empty( $prescription->created_at ) ? \Carbon\Carbon::parse( $prescription->created_at )->format('d M Y H:i') : '—' }} |