{% extends 'base.html.twig' %} {% block title %}Hello OrderController!{% endblock %} {% block body %}
{% if not cartItems %}
سبد خرید شما خالی میباشد.
{% endif %} {% for cartItem in cartItems %}
{{ cartItem.product.name }} جزئیات
+ {{ numberConvertor(cartItem.amount) }} -
{{ numberConvertor(cartItem.product.price) }}تومان
{% endfor %}
خلاصه صورتحساب
مبلغ کل {{ numberConvertor(totalPrice) }} تومان
هزینه ارسال وابسته به آدرس
مبلغ قابل پرداخت {{ numberConvertor(totalPrice) }} تومان
{% endblock %}