Hosting and SaaS for UK businesses
{{ $business['name'] ?? 'Host UK Ltd' }}
{{ $business['address_line1'] ?? '' }}
@if(isset($business['address_line2']) && $business['address_line2'])
{{ $business['address_line2'] }}
@endif
{{ $business['city'] ?? '' }}, {{ $business['postcode'] ?? '' }}
{{ $business['country'] ?? 'United Kingdom' }}
@if(isset($business['vat_number']) && $business['vat_number'])
VAT: {{ $business['vat_number'] }}
@endif
{{ $invoice->billing_name }}
{{ $invoice->billing_email }}
@if($invoice->billing_address)
@if(is_array($invoice->billing_address))
@if(isset($invoice->billing_address['line1'])){{ $invoice->billing_address['line1'] }}
@endif
@if(isset($invoice->billing_address['line2']) && $invoice->billing_address['line2']){{ $invoice->billing_address['line2'] }}
@endif
@if(isset($invoice->billing_address['city'])){{ $invoice->billing_address['city'] }}, @endif
@if(isset($invoice->billing_address['postcode'])){{ $invoice->billing_address['postcode'] }}
@endif
@if(isset($invoice->billing_address['country'])){{ $invoice->billing_address['country'] }}@endif
@else
{{ $invoice->billing_address }}
@endif
@endif
@if($invoice->workspace?->billing_vat_number)
VAT: {{ $invoice->workspace->billing_vat_number }}
@endif
| Description | Qty | Unit Price | Amount |
|---|---|---|---|
|
{{ $item->name }}
@if($item->description)
{{ $item->description }}
@endif
|
{{ $item->quantity }} | {{ app(\Core\Mod\Commerce\Services\CommerceService::class)->formatMoney($item->unit_price, $invoice->currency) }} | {{ app(\Core\Mod\Commerce\Services\CommerceService::class)->formatMoney($item->total, $invoice->currency) }} |
Thank you for your payment. This invoice was paid on {{ $invoice->paid_at?->format('j F Y') ?? 'N/A' }}.
Please ensure payment is received by the due date. Payment can be made via our secure checkout at host.uk.com. For any questions regarding this invoice, please contact support@host.uk.com.