|
Quote Number
{{ $quotation->quotation_number ?? 'QUO-001' }}
|
Date
{{ ($quotation->issue_date ?? now())->format('F d, Y') }}
|
Valid Until
{{ ($quotation->expiry_date ?? now()->addDays(30))->format('F d, Y') }}
|
|
{{ $item->description }}
@if($item->notes)
{{ $item->notes }}
@endif
{{ number_format($item->quantity, 2) }} × {{ $quotation->currency ?? 'USD' }} {{ number_format($item->unit_price, 2) }}
@if($item->tax_rate) ({{ $item->tax_rate }}% tax) @endif
|
{{ $quotation->currency ?? 'USD' }} {{ number_format(($item->quantity * $item->unit_price) * (1 + ($item->tax_rate ?? 0) / 100), 2) }} |
| No items | |
| Subtotal | {{ $quotation->currency ?? 'USD' }} {{ number_format($quotation->subtotal ?? 0, 2) }} |
| Tax | {{ $quotation->currency ?? 'USD' }} {{ number_format($quotation->tax_amount ?? 0, 2) }} |
| Discount | -{{ $quotation->currency ?? 'USD' }} {{ number_format($quotation->discount_amount ?? 0, 2) }} |
| Total | {{ $quotation->currency ?? 'USD' }} {{ number_format($quotation->total ?? 0, 2) }} |