Quoted To
@if($quotation->customer ?? null)
{{ $quotation->customer->name }}
@if($quotation->customer->email){{ $quotation->customer->email }}
@endif @if($quotation->customer->phone){{ $quotation->customer->phone }}
@endif @if($quotation->customer->address){{ $quotation->customer->address }}@endif
@endif
@endif @if($quotation->customer->phone){{ $quotation->customer->phone }}
@endif @if($quotation->customer->address){{ $quotation->customer->address }}@endif
| Service / Item | Quantity | Unit Price | Tax | Total |
|---|---|---|---|---|
|
{{ $item->description }}
@if($item->notes)
{{ $item->notes }} @endif |
{{ number_format($item->quantity, 2) }} | {{ $quotation->currency ?? 'USD' }} {{ number_format($item->unit_price, 2) }} | {{ $item->tax_rate ?? 0 }}% | {{ $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 Estimate | {{ $quotation->currency ?? 'USD' }} {{ number_format($quotation->total ?? 0, 2) }} |
Acceptance & Authorization
|
Client Signature
|
Date
|
Notes
{{ $quotation->notes }}
Terms & Conditions
{{ $quotation->terms ?? 'This quotation is valid for 30 days from the date of issue. All prices are subject to change without notice. Payment terms: Net 30 days from invoice date.' }}