{{ __('Dashboard') }}

Total Invoices

{{ number_format($totalInvoices) }}

Total Revenue

R{{ number_format($totalRevenue, 2) }}

Outstanding

R{{ number_format($outstanding, 2) }}

Overdue

R{{ number_format($overdue, 2) }}

{{ $overdueCount }} invoice(s)

This Month Revenue

R{{ number_format($thisMonthRevenue, 2) }}

This Month Invoices

{{ number_format($thisMonthInvoices) }}

Total Clients

{{ number_format($totalClients) }}

Recent Invoices

View All →
@if($recentInvoices->count() > 0)
@foreach($recentInvoices as $invoice) @endforeach
Invoice # Customer Date Status Total
{{ $invoice->invoice_number }} {{ $invoice->customer_name }} {{ $invoice->invoice_date->format('M d, Y') }} {{ ucfirst($invoice->status) }} {{ \App\Models\Invoice::getCurrencySymbol($invoice->currency ?? 'ZAR') }}{{ number_format($invoice->total, 2) }}
@else

No recent invoices

@endif