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

Booking index

{% for booking in bookings %} {% else %} {% endfor %}
Id BeginAt EndAt Title actions
{{ booking.id }} {{ booking.beginAt ? booking.beginAt|date('Y-m-d H:i:s') : '' }} {{ booking.endAt ? booking.endAt|date('Y-m-d H:i:s') : '' }} {{ booking.title }} show edit
no records found
Create new {% endblock %}