{% extends 'base.html.twig' %}
{% block title %}VOIR LES PRODUITS{% endblock %}
{% block body %}
<div class="container w-50 mx-auto my-5">
<h1 class="bg-primary mt-5 mb-0 py-2 text-center">VOIR LES PRODUCTS ACTUELS :</h1>
<a href="{{ path('app_dataHome')}}" class="btn btn-primary mt-3">Retour</a>
<table class="table table-striped table-hover text-left my-5">
<thead>
<tr class="bg-secondary">
<th scope="col" class="text-center">Id</th>
<th scope="col" class="text-center">Nom</th>
<th scope="col" class="text-center">Description</th>
<th scope="col" class="text-center">Prix</th>
<th scope="col" class="text-center">Stock</th>
<th scope="col" class="text-center">Lien 3D</th>
</tr>
</thead>
<tbody>
{% for product in products %}
<tr>
<th scope="row" class="text-center">{{ product.getId() }}</th>
<td class="text-center">{{ product.getNom() }}</td>
<td class="text-center">{{ product.getDescription() }}</td>
<td class="text-center">{{ product.getPrix() }}</td>
<td class="text-center">{{ product.getQteStock() }}</td>
<td class="text-center">{{ product.getImage() }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}