{% extends 'base.html.twig' %} {% set titre ='Liste des clients' %} {% block title %} {{ titre }} {% endblock %} {% block body %}

{{ titre }}

{% for customer in customers %} {% else %} {% endfor %}
Id Firstname Lastname Phone Address CreatedAt UpdatedAt actions
{{ customer.id }} {{ customer.firstname }} {{ customer.lastname }} {{ customer.phone }} {{ customer.address }} {{ customer.createdAt ? customer.createdAt|date('Y-m-d H:i:s') : '' }} {{ customer.updatedAt ? customer.updatedAt|date('Y-m-d H:i:s') : '' }} Détails Modifier
no records found
Nouveau
{% endblock %} {% block footer %} {{ include('footer.html.twig') }} {% endblock %}