{% extends 'base.html.twig' %} {% block body %}
{# Breadcrumbs #}

Panier

{% if items|length == 0 %} {# Etat vide #}

Votre panier est vide

Parcourez notre catalogue pour trouver ce qu'il vous faut.

Voir le catalogue
{% else %} {# Desktop: tableau #}
{% for item in items %} {% endfor %}
Produit Prix unitaire Quantite Sous-total
{% set imgMedia = item.product.image ?? (item.product.galleryImages|length > 0 ? item.product.galleryImages|first.media : null) %} {% if imgMedia %} {{ item.product.title }} {% else %}
{% endif %}
{{ item.product.title }} {% if item.variant %} {{ item.variant.label }} {% endif %}
{% if displayHT %} {{ item.unitPriceHT|number_format(2, ',', ' ') }} € HT {% else %} {{ (item.unitPriceHT * (1 + item.vatRate / 100))|number_format(2, ',', ' ') }} € {% endif %}
{{ item.qty }}
{% if displayHT %} {{ item.lineTotalHT|number_format(2, ',', ' ') }} € HT {% else %} {{ item.lineTotalTTC|number_format(2, ',', ' ') }} € {% endif %}
{# Mobile: cards #}
{% for item in items %}
{% set imgMedia = item.product.image ?? (item.product.galleryImages|length > 0 ? item.product.galleryImages|first.media : null) %} {% if imgMedia %} {{ item.product.title }} {% endif %}
{{ item.product.title }} {% if item.variant %} {{ item.variant.label }} {% endif %}
{{ item.qty }}
{% if displayHT %} {{ item.lineTotalHT|number_format(2, ',', ' ') }} € HT {% else %} {{ item.lineTotalTTC|number_format(2, ',', ' ') }} € {% endif %}
{% endfor %}
{# Totaux + actions #}
{% if displayHT %}
Total HT {{ totalHT|number_format(2, ',', ' ') }} €
TVA {{ totalVAT|number_format(2, ',', ' ') }} €
{% endif %}
Total TTC {{ totalTTC|number_format(2, ',', ' ') }} €
{% endif %}
{% endblock %}