{% extends 'template.html.twig' %} {% block title %}Mon Site Démo - Panier index{% endblock %} {% block body %} {% include "nav.html.twig" %}

Mon Panier

{% if cartData.items is not empty %}
{% for item in cartData.items %} {% if item.product is defined %} {% endif %} {% endfor %}
Id Title Description Picture Prix Quantité Total Supprimer
{{ item.product.id }} {{ item.product.name }} {{ item.product.description|raw }} {% if item.product.productImages[0] is defined and item.product.productImages[0] is not null %} Image de {{ item.product.name }} {% else %} Default Cover Image {% endif %} {{ item.product.price }} {{ item.product.price * item.quantity }} €
{% for item in cartData.items %} {% if item.product is defined %}
Image de {{ item.product.name }}

{{ item.product.name }}

Prix: {{ item.product.price }} €
Total: {{ item.product.price * item.quantity }} €
{% endif %} {% endfor %}
Total de Nombres: {{ cartData.items|map(item => item.quantity)|reduce((carry, qty) => carry + qty, 0) }}
Total: {{ cartData.cartTotal }} €
{% else %}

Panier Vide

{% endif %}
{% include "footer.html.twig" %} {% endblock %}