{% extends 'base.html.twig' %} {% block title %}Fiche Produit{% endblock %} {% block body %}

Détails du Produit

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

Nom du Produit

{{ product.name }}

Description

{{ product.description }}

Prix

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

Date de Création

{{ product.createdAt ? product.createdAt|date('d/m/Y H:i') : 'N/A' }}

Stock du produit

{{ product.stock }}

{% if is_granted('ROLE_ADMIN') %}
Modifier {{ include('product/_delete_form.html.twig') }}
{% endif %}
{% endblock %}