Billing Invoices

Invoices

View and download your billing history

@if($invoices->isEmpty())

No invoices found

@if($status === 'all') Invoices will appear here once you make a purchase @else No {{ $status }} invoices found @endif

@else
@foreach($invoices as $invoice)
@if($invoice->isPaid())
@elseif($invoice->isPending())
@elseif($invoice->isOverdue())
@else
@endif
{{ $invoice->invoice_number }}
{{ $invoice->issued_at?->format('j F Y') }} @if($invoice->items->isNotEmpty()) · {{ $invoice->items->first()->name }} @if($invoice->items->count() > 1) + {{ $invoice->items->count() - 1 }} more @endif @endif
{{ $this->formatMoney($invoice->total, $invoice->currency) }}
@if($invoice->isPaid()) Paid @if($invoice->paid_at) {{ $invoice->paid_at->format('j M') }} @endif @elseif($invoice->isOverdue()) Overdue @elseif($invoice->isPending()) Pending @else {{ ucfirst($invoice->status) }} @endif
@if($invoice->isPaid()) @endif @if($invoice->isPending() || $invoice->isOverdue()) Pay now @endif
@endforeach
@if($invoices->hasPages())
{{ $invoices->links() }}
@endif @endif

About your invoices

  • Download PDF invoices for your records and accounting
  • Invoices include VAT details where applicable
  • Need a custom invoice? Contact support for assistance