産後の腰痛、じつはただの疲れじゃない

産後の腰痛、じつはただの疲れじゃない

{% extends 'base.html.twig' %} {% block title %}Hello CartController! {% endblock %} {% block body %} {% include "partials/_navbar.html.twig" %}
{% for message in app.flashes('info') %}
{{message}}
{% endfor %}

My cart

This are the items in your shopping cart

{% set total = 0 %} {% for product in app.user.cart.products %} {% set total= total+ (product.price * product.quantity) %} {% endfor %}
Product Price Quantity Total Actions
{{product.productName}} {{product.price}} £ {{product.quantity}} {{product.price * product.quantity}} £ Remove
Total : {{total}} £
Checkout
{% endblock %}
ブログに戻る