QUOTATION

{{ $quote->quote_number }}

ProcureHub

B2B Procurement Platform

Quote For:

{{ $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 }}
@if($supplier)

Supplier:

{{ $supplier->company_name }}

@endif @foreach($items as $item) @endforeach
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) }}
@if($quote->delivery_fee > 0) @endif
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) }}
@if($quote->terms)

Terms & Conditions:

{{ $quote->terms }}

@endif @if($quote->notes)

Notes:

{{ $quote->notes }}

@endif

This quote is valid until {{ $quote->valid_until?->format('d M Y') ?? 'further notice' }}.

ProcureHub - B2B Procurement Platform