|
Dear {{ $quotation->customer_name }},
Thank you for your quotation request with FOSSA General Services and Supplies.
Please find your quotation attached as a PDF for your records.
| Reference |
{{ $quotation->reference }} |
| Email |
{{ $quotation->customer_email }} |
| Items |
{{ $quotation->items->count() }} |
| Status |
{{ ucfirst($quotation->status) }} |
|
|
Estimated Total
@php
$hasUnpriced = $quotation->items->contains(function ($item) {
return $item->item_type === 'service' && (float) $item->unit_price <= 0;
});
@endphp
@if($hasUnpriced && (float) $quotation->total <= 0)
—
@elseif($hasUnpriced)
{{ format_tzs($quotation->total) }} + TBD
@else
{{ format_tzs($quotation->total) }}
@endif
|
Our team will review your request and follow up if any clarification is needed.
|