{% extends 'chef/dashboard.html.twig' %} {% block title %}Chef Dishes{% endblock %} {% block dashboard_content %}

All Dishes

Add Dish
{% for dish in dishes %} {% else %} {% endfor %}
# Image Name Description Ingredients Price Created Actions
{{ loop.index }} {% if dish.image %} Dish Image {% else %} No Image {% endif %} {{ dish.name }} {{ dish.description }} {{ dish.ingredients }} {{ dish.price }} {{ dish.createdAt|date('Y-m-d') }} Edit
No dishes found.
{% endblock %}