{% extends 'base.html.twig' %} {% block title %}Mon panier{% endblock %} {% block body %}
{% for item in cart %} {% endfor %}
Nom Model Prix Quantité Total Supprimer

{{item.product.name}}

{{item.product.subtitle}}

{{(item.product.price / 100)|number_format(2,',','.') }} Fr CFA

{{ (item.quantity * (item.product.price / 100))|number_format(2,',','.') }} Fr CFA

{% if totalQuantity > 0 %} {% endif %}

Total du panier

Total:

{{ (totalPrice / 100)|number_format(2,',','.') }} FCFA

Quantité

Vous avez: {{ totalQuantity }}

Continuez mes achats
Total

{{ (totalPrice / 100)|number_format(2,',','.') }} FCFA

{% if totalQuantity > 0 %} {% else %} Votre panier est vide, remplissez le depuis la page produits. {% endif %}
{% endblock %}