@if($company->company_name ?? null)
{{ $company->company_name }}
@endif
Issue: {{ $quotation->issue_date->format('M d, Y') }}
@if($quotation->expiry_date)
| Expires: {{ $quotation->expiry_date->format('M d, Y') }}
@endif
Bill to
{{ $quotation->customer->name ?? 'Customer' }}
@if($quotation->customer->email ?? null)
{{ $quotation->customer->email }}
@endif
| Description | Qty | Unit | Tax % | Amount |
|---|---|---|---|---|
| {{ $item->description }} | {{ number_format($item->quantity, 2) }} | {{ $quotation->currency }} {{ number_format($item->unit_price, 2) }} | {{ number_format($item->tax_rate, 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) }} |
Notes
{{ $quotation->notes }}
Terms
{{ $quotation->terms }}