{% extends 'base.html.twig' %} {% block title %}FoodOrder index{% endblock %} {% block body %}

FoodOrder index

{% for food_order in food_orders %} {% else %} {% endfor %}
StartedByName Id StartedAt ClosedAt actions
{{ food_order.startedByName }} {{ food_order.id }} {{ food_order.startedAt ? food_order.startedAt|date('Y-m-d H:i:s') : '' }} {{ food_order.closedAt ? food_order.closedAt|date('Y-m-d H:i:s') : '' }} show edit
no records found
Create new {% endblock %}