{% extends 'base.html.twig' %} {% block title %}Mon panier - La Boutique Française{% endblock %} {% block content %}

Mon panier

Retrouvez l'ensemble des produits que vous avez ajouté à votre panier. {% if cart|length > 0 %} {% set total = null %} {% set quantitetotal = null %} {% for product in cart %} {% set total = total + (product.product.price * product.quantity) %} {% set quantitetotal = quantitetotal + (product.quantity) %} {% endfor %}
Produit Désignation Quantité Prix Total
{{ product.product.name }}
{{ product.product.name }}
{{ product.product.subtitle }}
Retirer mon produit x {{ product.quantity }} Ajouter un produit {{ (product.product.price / 100)|number_format(2, ',', '')|default('0.00') }}€ {{ ((product.product.price * product.quantity) / 100)|number_format(2, ',', '')|default('0.00') }} € Supprimer mon produit
Nombre de produit : {{ quantitetotal}}
Total de mon panier : {{ (total / 100)|number_format(2, ',', '')|default('0.00') }} €
Valider mon panier
{% else %}

Votre panier est vide

{% endif %} {% endblock %}