{% extends 'base.html.twig' %} {% block javascript %} {% endblock %} {% block title %}Valider ma commande - La Boutique Française{% endblock %} {% block content %}

Mon récapitulatif

Vérifiez vos informations avant de payer votre commande


Mon adresse de livraison
{{ delivery|raw }}

Mon transporteur
{{ carrier.name }}
{{ carrier.description }}
{{ (carrier.price / 100) |number_format(2, ',', '')|default('0.00') }}€
Ma commande
{% set total = null %} {% for key,product in cart %}
{{ product.product.name }}
{{ product.product.name }}
{{ product.product.subtitle }}
x {{ product.quantity }}
{{ ((product.product.price * product.quantity) / 100)|number_format(2, ',', '')|default('0.00') }} €
{% set total = total + (product.product.price * product.quantity) %} {% endfor %}

Sous-Total : {{ (total / 100)|number_format(2, ',', '')|default('0.00') }} €
Livraison : {{ (carrier.price / 100)|number_format(2, ',', '')|default('0.00') }} €
Total : {{ ((total / 100) + (carrier.price / 100))|number_format(2, ',', '')|default('0.00') }} € Payer {{ ((total / 100) + (carrier.price / 100))|number_format(2, ',', '')|default('0.00') }} €
{% endblock %} {% block script %} {% endblock %}