{% extends "template.html.twig" %} {% block content %}
{% if product.starred %}★{% else %} ☆ {% endif %} {{ product.name }} {{ product.name }} {{ product.subTitle }} {% if product.promotions is not null and product.promotions.hasPromotion %}PROMO: {{ product.promotions.tag }} {% endif %} link
{% set stock = product.stock().get() %} {% for price in product.price %} {% endfor %}
price lowest product price in 30 days standard price Stock
{{ price.price | format_currency(product.country.currency, {}, product.country.locale) }} {{ price.lowestProductPrice30Days | format_currency(product.country.currency, {}, product.country.locale) }} {{ price.productStandardPrice | format_currency(product.country.currency, {}, product.country.locale) }} {{ price.created_at }} {{ (stock | findByCreatedAtDate(price.created_at | slice(0,10))).stock ?? '' }}
{% endblock %}