{% extends 'portal/layout.html.twig' %} {% block title %}My Invoices - KitscoApp{% endblock %} {% block page_title %}My Invoices{% endblock %} {% block content %}
{% if invoices|length > 0 %}
{% for invoice in invoices %} {% endfor %}
Invoice # Type Date Due Date Amount Balance Due Status
{{ invoice.displayInvoiceNumber }} {{ invoice.type.label }} {{ invoice.invoiceDate|date('d/m/Y') }} {{ invoice.dueDate|date('d/m/Y') }} {{ invoice.formattedTotal }} {{ invoice.currency.symbol }}{{ invoice.balanceDue|money }} {{ invoice.status.label }}
{% else %}

No invoices found

{% endif %}
{% endblock %}