New proforma New quote
@if (session('success'))
{{ session('success') }}
@endif
@if ($search !== '' || $status !== 'all' || $etims !== 'all') @endif
Updating invoices...
@forelse ($invoices as $invoice)
{{ $invoice->invoice_number }}

{{ $invoice->customer->name }}

Total

{{ $invoice->currency }} {{ number_format((float) $invoice->total_amount, 2) }}

Balance due

{{ $invoice->currency }} {{ number_format($invoice->balance_due, 2) }}

Due date

{{ $invoice->due_at?->format('d M Y') ?? 'Not set' }}

eTIMS

Open invoice
@empty

No invoices found

Try clearing the filters or convert an accepted quote or proforma.

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