{{ $quote->company->name }}
@if($quote->company->address)
{{ $quote->company->address }}
@endif
@if($quote->company->phone)
{{ $quote->company->phone }}
@endif
@if($quote->company->email)
{{ $quote->company->email }}
@endif
{{ $quote->quote_number }}
{{ $quote->title }}
{{ $quote->status }}
Created: {{ \Carbon\Carbon::parse($quote->created_at)->format('M d, Y') }}
@if($quote->expiry_date)
Expires: {{ \Carbon\Carbon::parse($quote->expiry_date)->format('M d, Y') }}
@endif
Quote For
{{ $quote->customer->name }}
@if($quote->customer->email)
{{ $quote->customer->email }}
@endif
@if($quote->customer->phone)
{{ $quote->customer->phone }}
@endif
@if($quote->customer->address)
{{ $quote->customer->address }}
@endif
Description
{{ $quote->description }}
Quote Items
| Description | Quantity | Unit Price | Total |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | {{ $quote->company->formatCurrencyZar($item->unit_price) }} | {{ $quote->company->formatCurrencyZar($item->total) }} |
Subtotal:
{{ $quote->company->formatCurrencyZar($quote->subtotal) }}
@if($quote->discount_amount > 0)
Discount:
-{{ $quote->company->formatCurrencyZar($quote->discount_amount) }}
@endif
Tax ({{ $quote->tax_rate }}%):
{{ $quote->company->formatCurrencyZar($quote->tax_amount) }}
Total:
{{ $quote->company->formatCurrencyZar($quote->total) }}
Important: This quote has expired. Please contact us for a new quote.
@elseif($quote->expiry_date)
Important: This quote is valid until {{ \Carbon\Carbon::parse($quote->expiry_date)->format('M d, Y') }}.
@endif
@if($quote->notes)
Notes
{{ $quote->notes }}
Terms & Conditions
{{ $quote->terms_conditions }}