{{ $quotation->customer->name ?? 'Customer' }}
@if($quotation->customer->email ?? null)
{{ $quotation->customer->email }}
@endif
| Item | Qty | Price | Amount |
|---|---|---|---|
| {{ $item->description }} | {{ number_format($item->quantity, 2) }} | {{ $quotation->currency }} {{ number_format($item->unit_price, 2) }} | {{ $quotation->currency }} {{ number_format($item->total, 2) }} |
| Subtotal | {{ $quotation->currency }} {{ number_format($quotation->subtotal, 2) }} |
| Tax | {{ $quotation->currency }} {{ number_format($quotation->tax_amount, 2) }} |
| Discount | -{{ $quotation->currency }} {{ number_format($quotation->discount_amount, 2) }} |
| Total | {{ $quotation->currency }} {{ number_format($quotation->total, 2) }} |
{{ $quotation->notes }}
{{ $quotation->terms }}