Quotation

{{ $quotation->quotation_number }}

@if($companySettings->company_name ?? null) {{ $companySettings->company_name }}
@endif Issued {{ $quotation->issue_date->format('M j, Y') }} @if($quotation->expiry_date) · Valid until {{ $quotation->expiry_date->format('M j, Y') }} @endif

{{ $quotation->customer->name ?? 'Customer' }}
@if($quotation->customer->email ?? null) {{ $quotation->customer->email }} @endif

@foreach($quotation->items as $item) @endforeach
Item Qty Price Amount
{{ $item->description }} {{ number_format($item->quantity, 2) }} {{ $quotation->currency }} {{ number_format($item->unit_price, 2) }} {{ $quotation->currency }} {{ number_format($item->total, 2) }}
@if($quotation->tax_amount > 0) @endif @if($quotation->discount_amount > 0) @endif
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) }}
@if($quotation->notes)
Notes

{{ $quotation->notes }}

@endif @if($quotation->terms)
Terms

{{ $quotation->terms }}

@endif