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

Mes favoris

{% for product in favoriProducts %}
{% if product.image|length > 0 %}
{% for image in product.image %}
{{ product.name }}
{% endfor %}
{% else %}
Aucune Image
{% endif %}

{{ product.name }}

{{ product.description|slice(0, 100) ~ (product.description|length > 100 ? '...' : '') }}

{{ product.price|number_format(2, '.', ',') }} EUR

Date de mise en ligne: {{ product.createdAt ? product.createdAt|date('d/m/Y') : 'N/A' }}

{% else %}
Aucun produit trouvé
{% endfor %}
{% endblock %}