{{ $quote->quote_number }}
B2B Procurement Platform
{{ $company?->company_name ?? $quote->user->name }}
@if($company){{ $company->address ?? '' }}
{{ $company->city ?? '' }} {{ $company->postal_code ?? '' }}
@endif{{ $quote->user->email }}
| Quote Date: | {{ $quote->created_at->format('d M Y') }} |
| Valid Until: | {{ $quote->valid_until?->format('d M Y') ?? 'N/A' }} |
| Status: | {{ $quote->status }} |
{{ $supplier->company_name }}
| Item | SKU | Qty | Unit Price | Total |
|---|---|---|---|---|
| {{ $item->product_name }} | {{ $item->product_sku ?? '-' }} | {{ $item->quantity }} | R {{ number_format($item->unit_price, 2) }} | R {{ number_format($item->total_price, 2) }} |
| Subtotal: | R {{ number_format($quote->subtotal, 2) }} |
| VAT (15%): | R {{ number_format($quote->tax_amount, 2) }} |
| Delivery Fee: | R {{ number_format($quote->delivery_fee, 2) }} |
| Total: | R {{ number_format($quote->total_amount, 2) }} |
{{ $quote->terms }}
{{ $quote->notes }}
This quote is valid until {{ $quote->valid_until?->format('d M Y') ?? 'further notice' }}.
ProcureHub - B2B Procurement Platform