{% extends 'admin/layout.html.twig' %} {% block title %}Dashboard - KitscoApp{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}

Total Invoices

{{ total_invoices }}

Paid

{{ paid_count }}

Outstanding

{{ sent_count }}

Overdue

{{ overdue_count }}

Monthly Revenue

Shs {{ monthly_revenue|money }}

Total Paid

Shs {{ paid_total|money }}

Customers

{{ customer_count }}

Quick Actions

Recent Invoices

View All
{% for invoice in recent_invoices %} {% else %} {% endfor %}
Invoice Customer Total Status
{{ invoice.displayInvoiceNumber }} {{ invoice.customer.name }} {{ invoice.formattedTotal }} {{ invoice.status.label }}

No invoices yet

Get started by creating your first invoice.

{% endblock %}