Slot Booking
Booking List
Patient | Customer | Doctor | Type | Fees | Date | Action | |
---|---|---|---|---|---|---|---|
<%= data?.patient?.name || data?.customer?.fullName %> | <%= data?.customer?.fullName %> | <%= data?.doctor?.name %> | <% if (data.bookingType.toLowerCase() === 'clinic') { %><%= data.bookingType %> | <% } else { %><%= data.bookingType %> | <% } %><%= data?.amount%> | <%= moment(data.slotDate+' '+data.slotTime).format("Do MMM YY, h:m A") %> |
Sorry! No Result Found
We've searched more than 150+ bookings We did not find any booking for you search.
Showing
<% if (((currentPage - 1) * pageSize) + 1 == listCount) { %>
<%= listCount %>
<% } else { %>
<%= ((currentPage - 1) * pageSize) + 1 %> to <%= currentPage == pageCount ? listCount : (currentPage * pageSize) %>
<% } %>
of <%= listCount %> entries
<% if (currentPage > 1) { %>
Previous
<% } else { %>
Previous
<% } %>
-
<% for (var j = 1; j <= pageCount; j++) { %>
<% if (j >= currentPage - 2 && j <= currentPage + 2) { %>
<% if (currentPage == j) { %>
- <%= j %> <% } else { %>
- <%= j %> <% } %> <% } %> <% } %>