{% extends 'base.html.twig' %} {% block title %}Mon Panier{% endblock %} {% block body %}
| Produit | Prix unitaire | Quantité | Total | Actions |
|---|---|---|---|---|
| {{ item.card.name }} | {{ (item.card.price / 100)|number_format(2, ',', ' ') }} € | - {{ item.quantity }} + | {{ ((item.card.price * item.quantity) / 100)|number_format(2, ',', ' ') }} € | 🗑️ Supprimer |
| TOTAL : | {{ (total / 100)|number_format(2, ',', ' ') }} € | |||