{% extends 'admin/dashboard.html.twig' %} {% block title %}Admin - All Dishes{% endblock %} {% block dashboard_content %}
| # | Image | Name | Description | Ingredients | Menu | Chef | Created At | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ loop.index }} |
{% if dish.image %}
|
{{ dish.name }} | {{ dish.description|length > 50 ? dish.description|slice(0, 50) ~ '...' : dish.description }} | {{ dish.ingredients|length > 50 ? dish.ingredients|slice(0, 50) ~ '...' : dish.ingredients }} | {{ dish.menu ? dish.menu.title : '—' }} | {{ dish.chef ? dish.chef.name : '—' }} | {{ dish.createdAt ? dish.createdAt|date('Y-m-d') : '—' }} | Edit |
| No dishes found. | ||||||||