@php $money = fn ($value) => 'R '.number_format((float) $value, 2); @endphp

Quotation

{{ $quotation->quotation_number }}

Prepared for {{ $quotation->client->name }}

{{ $quotation->statusLabel() }}

Issue date

{{ $quotation->issue_date->format('d M Y') }}

Valid until

{{ $quotation->valid_until->format('d M Y') }}

VAT rate

{{ number_format((float) $quotation->tax_rate, 2) }}%

Grand total

{{ $money($quotation->grand_total) }}

@foreach ($quotation->items as $item) @endforeach
Description Qty Unit price Line total
{{ $item->description }} {{ $item->quantity }} {{ $money($item->unit_price) }} {{ $money($item->line_total) }}
@if ($quotation->notes)

Notes

{{ $quotation->notes }}

@else
No notes.
@endif

Pricing summary

Subtotal before VAT{{ $money($quotation->subtotal) }}
VAT ({{ number_format((float) $quotation->tax_rate, 2) }}%){{ $money($quotation->tax_total) }}
Grand total{{ $money($quotation->grand_total) }}