No invoices found.
| Invoice # | Date | Due Date | Total | Paid | Balance | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->invoice_date->format('d M Y') }} | {{ $invoice->due_date->format('d M Y') }} @if($isOverdue)Overdue@endif | {{ number_format($invoice->total, 2) }} {{ $invoice->currency }} | {{ number_format($paid, 2) }} | {{ number_format($balance, 2) }} | @if($invoice->status === 'paid')Paid @elseif($invoice->status === 'pending')Pending @elseCancelled@endif | @if($balance > 0 && $invoice->status === 'pending') Pay Online @endif |