@extends('layouts.admin') @section('title','Prescriptions') @section('heading','Prescription review') @section('content')
@forelse($prescriptions as $prescription)@empty@endforelse
RequestCustomerPharmacyStatusTotalSubmitted
{{ $prescription->number }}{{ $prescription->customer?->name }}{{ $prescription->vendor?->name }}{{ $prescription->status }}{{ $prescription->total ? number_format((float)$prescription->total,2) : '—' }}{{ $prescription->created_at->format('d M Y H:i') }}Review
No prescriptions found.
@endsection