{% extends 'base.html.twig' %} {% block title %}Mes favoris | {{ parent() }}{% endblock %} {% block body %}

Mes favoris

{% if app.user.productFavorites|length > 0 %}
{% for favorite in app.user.productFavorites %} {% endfor %}
Image Article Prix Action
{{ favorite.product.title }} {% if favorite.product.discount > 0 %}{{ favorite.product.oldPrice|number_format(0, ',', ' ') }}{% endif %} {{ favorite.product.newPrice|number_format(0, ',', ' ') }} {{ app_devise }}
{% else %}

Il n'y a plus d'articles dans vos favoris

Aller à la boutique
{% endif %}
{% endblock %}