{% extends 'base.html.twig' %} {% block title %}Ma commande - Millenium{% endblock %} {% block body %}

Mon récapitulatif

Accueil

-

Mon récapitulatif

Mon adresse de livraison

{{order.delivery|raw}}

Transporteur

{{order.carrierName}}

Vos articles
{% for item in cart.products %}
{{ item.product.name }}
{{ item.product.name }}
x{{ item.quantity }}
{% endfor %}
Total articles
{{ (totalPrice / 100)|number_format(2,',','.') }} FCFA
Livraison
{{ (order.carrierPrice/100)|number_format(2,',','.')}} FCFA

Total commande
{{ ((totalPrice / 100) + order.carrierPrice / 100)|number_format(2,',','.') }} FCFA
Payer
{% endblock %}