{{ stats.total_customers }}
Total Customers
{{ formatCurrency(stats.total_revenue) }}
Total Revenue
{{ stats.unpaid_invoices }}
Unpaid Invoices
{{ formatCurrency(stats.total_due) }}
Total Due
{{ stats.pending_visas }}
Pending Visas
{{ stats.active_tickets }}
Active Tickets
{{ stats.active_bookings }}
Active Bookings
{{ formatCurrency(stats.total_revenue - stats.total_expenses) }}
Net Profit
Recent Invoices
| Invoice # | Customer | Total | Status |
|---|---|---|---|
| {{ inv.invoice_no }} | {{ inv.customer?.name || '-' }} | {{ formatCurrency(inv.total) }} | {{ inv.status }} |
| No invoices yet | |||
Recent Payments
| Customer | Amount | Method | Date |
|---|---|---|---|
| {{ pay.customer?.name || '-' }} | {{ formatCurrency(pay.amount) }} | {{ pay.method }} | {{ formatDate(pay.date) }} |
| No payments yet | |||