To Do's

Invoices

Review the invoices linked to your businesses, their status, due date, and current total.

Back to To Do's
@forelse ($invoices as $invoice)

Invoice

{{ $invoice['business_name'] }}

{{ $invoice['number'] }}

{{ $invoice['status'] }}
@if ($invoice['contact_name'])

Contact

{{ $invoice['contact_name'] }}

@endif

Issued

{{ $invoice['issued_at']?->format('d M Y') ?? '--' }}

Due

{{ $invoice['due_at']?->format('d M Y') ?? '--' }}

Time

{{ $invoice['issued_at']?->format('H:i') ?? '--:--' }}

Total

{{ $invoice['grand_total'] }}

Reference

{{ $invoice['reference'] ?? 'Not available' }}

@if ($invoice['preview_url']) View invoice @endif @if ($invoice['download_url']) @endif
@empty

No invoices yet

Invoices linked to your businesses will appear here.

@endforelse
@if ($invoices->hasPages())
{{ $invoices->links() }}
@endif