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

{{ customers|length }} customer(s)

Add Customer
{% for customer in customers %} {% else %} {% endfor %}
Name Actions

{{ customer.name }}

{% if customer.contactEmail %}

{{ customer.contactEmail }}

{% endif %}

No customers yet

Add your first customer to start creating invoices.

Add Customer
{% endblock %}