Invoice #{{ $invoice->invoice_number }}
| Customer | {{ $invoice->pharmacy->name }} |
| Invoice Date | {{ $invoice->created_at->format('d M Y') }} |
| Description | Amount |
|---|---|
| {{ $item->description }} | ${{ number_format($item->amount, 2) }} |
| Subtotal | ${{ number_format($invoice->subtotal, 2) }} |
| GST | ${{ number_format($invoice->tax, 2) }} |
| Total | ${{ number_format($invoice->total, 2) }} |