Host UK

Hosting and SaaS for UK businesses

INVOICE
{{ $invoice->invoice_number }}
Issued: {{ $invoice->issued_at?->format('j F Y') ?? $invoice->created_at->format('j F Y') }} @if($invoice->due_date)
Due: {{ $invoice->due_date->format('j F Y') }} @endif
@if($invoice->isPaid()) Paid @elseif($invoice->isOverdue()) Overdue @else Pending @endif

From

{{ $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

Bill To

{{ $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

@foreach($invoice->items as $item) @endforeach
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) }}
Subtotal {{ app(\Core\Mod\Commerce\Services\CommerceService::class)->formatMoney($invoice->subtotal, $invoice->currency) }}
@if($invoice->discount_amount > 0)
Discount -{{ app(\Core\Mod\Commerce\Services\CommerceService::class)->formatMoney($invoice->discount_amount, $invoice->currency) }}
@endif @if($invoice->tax_amount > 0)
@if($invoice->tax_rate) VAT ({{ number_format($invoice->tax_rate, 0) }}%) @else VAT @endif {{ app(\Core\Mod\Commerce\Services\CommerceService::class)->formatMoney($invoice->tax_amount, $invoice->currency) }}
@endif
Total {{ app(\Core\Mod\Commerce\Services\CommerceService::class)->formatMoney($invoice->total, $invoice->currency) }}
@if($invoice->isPaid())

Payment Received

Thank you for your payment. This invoice was paid on {{ $invoice->paid_at?->format('j F Y') ?? 'N/A' }}.

@else

Payment Information

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.

@endif