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

Mon panier

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

Votre panier est vide.

{% endif %} {% endblock %}