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

{{ titre }}

Id {{ customer.id }}
Firstname {{ customer.firstname }}
Lastname {{ customer.lastname }}
Phone {{ customer.phone }}
Address {{ customer.address }}
CreatedAt {{ customer.createdAt ? customer.createdAt|date('Y-m-d H:i:s') : '' }}
UpdatedAt {{ customer.updatedAt ? customer.updatedAt|date('Y-m-d H:i:s') : '' }}
back to list edit {{ include('customer/_delete_form.html.twig') }}
{% endblock %} {% block footer %} {{ include('footer.html.twig') }} {% endblock %}