<%- include('../layouts/header.ejs') %> <%- include('../layouts/navbar.ejs', { client: client }) %>

My Bookings

View and manage your room reservations.

<% if(bookings.length > 0){ %> <% bookings.forEach(booking => { %> <% }) %> <% } else { %> <% } %>
Room Check In Check Out Total Status Action
Room <%= booking.Room.room_number %> <%= booking.check_in %> <%= booking.check_out %> $<%= booking.total_amount %> <%= booking.status %> <% if(booking.status === "booked"){ %>
<% } else { %> - <% } %>
No bookings found.
<%- include('../layouts/footer.ejs') %>