{% extends "baseClient.html.twig" %} {% block title %} EasyFood | Plats {% endblock %} {% block body %}
{{ form_start(formSearch) }} {{ form_widget(formSearch) }} {{ form_end(formSearch) }}
{% for resto in lesRestaurants %}

{{ resto.nomRestaurant }}

{% for plat in resto.lesPlats %}
{{ plat.nomPlat }}
{{ plat.nomPlat }}

{{ plat.descriptionPlat }}

{{ plat.leRestaurant }}

{% if loop.index % 3 == 0 %}
{% endif %} {% endfor %}
{% endfor %}
{% endblock %}