Catalogue des Produits

Ajouter un Nouveau Produit
{% for product in products %}
{% 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 %}