{% extends 'base.html.twig' %} {% block title %}Manage Bookings - Admin{% endblock %} {% block body %}

All Bookings

Manage and monitor all customer bookings

All Bookings ({{ bookings.getTotalItemCount }})

{% if bookings.getTotalItemCount > 0 %}
{% for booking in bookings %} {% endfor %}
ID Date & Time Customer Contact Provider Service Hours Amount Status Booked On Actions
#{{ booking.id }} {{ booking.serviceDate|date('M d, Y') }}
{{ booking.serviceTime|date('g:i A') }}
{{ booking.customerName }} {{ booking.customerEmail }}
{{ booking.customerPhone }}
{{ booking.serviceProvider.user.fullName }} {{ booking.service.name }} {{ booking.hours }}h ${{ booking.totalPrice }} {{ booking.status|title }} {{ booking.createdAt|date('M d, Y') }}
Edit
{# Pagination controls #}
{{ knp_pagination_render(bookings) }}
{% else %}
📅

No Bookings Yet

No customer bookings have been created yet.

+ Create First Booking
{% endif %}
{% endblock %}