{% extends 'base.html.twig' %} {% block title %}Plats index{% endblock %} {% block head %} {% endblock %} {% block body %}
Bonjour, {{ app.user.prenom }}
{% if is_granted('ROLE_ADMIN') %} {% elseif is_granted('ROLE_CUISINIER') %} {% elseif is_granted('ROLE_SERVEUR') %} {% endif %}
{{ ux_icon('ph:user-circle-fill') }} Compte

Plats index

{% for plat in plats %} {% else %} {% endfor %}
Id Nom Description Prix Categorie Statut Nb_de_commande actions
{{ plat.id }} {{ plat.Nom }} {{ plat.Description }} {{ plat.Prix }} {{ plat.Categorie }} {{ plat.Statut ? 'Yes' : 'No' }} {{ plat.NbDeCommande }}
{{ include('plats/_delete_form.html.twig') }}
Modifier
Aucun enregistrement trouvé
{% block stylesheets %} {% endblock %} {% endblock %}