@php $gbp = fn ($cents) => '£' . number_format(((int) $cents) / 100, 2); @endphp
![]() |
1C Simpson Parkway Kirkton Campus Livingston EH54 7BH |
|
Bill To:
{{ $inv['customer_name'] }}
{{ $inv['customer_email'] }}
@if ($inv['company_name']){{ $inv['company_name'] }} @endif
@if ($inv['customer_phone']){{ $inv['customer_phone'] }} @endif
|
| Description | Date | Qty | Amount |
|---|---|---|---|
| {{ $inv['course_title'] }} | {{ $inv['start_label'] }} | {{ $inv['num_delegates'] }} | {{ $gbp($inv['net_cents']) }} |
| Gross total exc VAT: | {{ $gbp($inv['gross_ex_vat_cents']) }} |
| Discount{{ $inv['discount_code'] ? ' ('.$inv['discount_code'].')' : '' }}: | {{ $inv['discount_cents'] > 0 ? '-'.$gbp($inv['discount_cents']) : '—' }} |
| Net total exc VAT: | {{ $gbp($inv['net_cents']) }} |
| VAT (20%): | {{ $gbp($inv['vat_cents']) }} |
| Total amount due: | {{ $gbp($inv['total_cents']) }} |