{% extends 'base.html.twig' %} {% block title %}Ma commande - Millenium{% endblock %} {% block body %}

Validation Commande

Accueil

-

Validation commande

{% set formHtml %} {{form_start(form, {action:path('order_add')})}} {{ form_label(form.addresses, 'Choisissez votre adresse de livraison')}} Ajouter nouvelle adresse {{form_end(form)}} {% endset %} {{ formHtml|replace({'[br]' : '
'})|raw }}
Récapitulatif :
{% for item in cart.products %}
{{ item.product.name }}
{{ item.product.name }}
x{{ item.quantity }}
{% endfor %}
Total
{{ (totalPrice / 100)|number_format(2,',','.') }} FCFA
{% endblock %}