{% extends 'base.html.twig' %} {% block title %}Nouvelle Commande{% endblock %} {% block body %}

Récapitulatif de votre commande

{% for item in cartItems %} {% endfor %}
Produit Quantité Prix Unitaire Total
{{ item.product.name }} {{ item.quantity }} {{ item.product.price }} € {{ item.totalPrice }} €
{% set totalPriceCommand = 0 %} {% for item in cartItems %} {% set totalPriceCommand = totalPriceCommand + item.totalPrice %} {% endfor %}

Total de la commande : {{totalPriceCommand}} €

Créer une nouvelle commande

{{ include('command/_form.html.twig') }}
{% endblock %}