| {{ $company->company_name ?? config('app.name') }} |
| Estimate |
| Quote # {{ $quotation->quotation_number }} |
Date {{ $quotation->issue_date->format('F d, Y') }} |
Valid Until {{ $quotation->expiry_date ? $quotation->expiry_date->format('F d, Y') : '—' }} |
|
Total Estimate
{{ $quotation->currency }} {{ number_format($quotation->total, 2) }}
|
|
Client
{{ $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 |
| Cost Breakdown |
|
{{ $item->description }}
@if($item->notes)
{{ $item->notes }} @endif
{{ number_format($item->quantity, 2) }} × {{ $quotation->currency }} {{ number_format($item->unit_price, 2) }}
@if($item->tax_rate)
({{ $item->tax_rate }}% tax)
@endif
|
{{ $quotation->currency }} {{ number_format($line, 2) }} |
| No items | |
| 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 ?? 'This estimate is valid for 30 days.' }} |