Booking Details
{{ form_start(form, {'attr': {'class': 'admin-form'}}) }}
{% if booking %}
Booking Summary
Created:
{{ booking.createdAt|date('F d, Y g:i A') }}
{% if booking.updatedAt %}
Last Updated:
{{ booking.updatedAt|date('F d, Y g:i A') }}
{% endif %}
{% if booking.confirmedAt %}
Confirmed:
{{ booking.confirmedAt|date('F d, Y g:i A') }}
{% endif %}
{% if booking.completedAt %}
Completed:
{{ booking.completedAt|date('F d, Y g:i A') }}
{% endif %}
{% endif %}
{{ form_end(form) }}