{{ $quote->customer->name }}
{{ $quote->customer->billing_address }}
{{ $quote->customer->email }} {{ $quote->customer->phone }}
| Description | Qty | Unit price | VAT | Total |
|---|---|---|---|---|
| {{ $item->description }} | {{ number_format((float)$item->quantity,2) }} {{ $item->unit }} | KES {{ number_format((float)$item->unit_price,2) }} | KES {{ number_format((float)$item->tax_amount,2) }} | KES {{ number_format((float)$item->line_total,2) }} |
| Subtotal | KES {{ number_format((float)$quote->subtotal,2) }} |
| Discount | KES {{ number_format((float)$quote->discount_amount,2) }} |
| VAT | KES {{ number_format((float)$quote->vat_amount,2) }} |
| Total | KES {{ number_format((float)$quote->total_amount,2) }} |
{{ $quote->notes ?: 'Prices are valid until the expiry date shown above.' }}