{% extends 'admin/layout.html.twig' %} {% block title %}Invoices - KitscoApp{% endblock %} {% block page_title %}Invoices{% endblock %} {% block content %}
All Draft Sent Paid Overdue
New Invoice
{% for invoice in invoices %} {% else %} {% endfor %}
Invoice Customer Date Total Status Actions
{{ invoice.displayInvoiceNumber }} {{ invoice.customer.name }} {{ invoice.invoiceDate|date('d/m/Y') }} {{ invoice.formattedTotal }} {{ invoice.status.label }}
{% if is_granted('INVOICE_EDIT', invoice) %} {% endif %}

No invoices found

{% if current_status %}No {{ current_status }} invoices at the moment.{% else %}Get started by creating your first invoice.{% endif %}

Create Invoice
{% endblock %}