<%= form_tag transactions_bookings_path, :method => :get do %>

<% end %>
<% if @bookings != 0 %> <% @bookings.each do |booking| %> <% end %> <% else %> <% end %>
<%= t("views.right_panel.detail.booking_id") %> <%= t("views.right_panel.detail.sale_id") %> <%= t("views.right_panel.detail.table") %> <%= t("views.right_panel.detail.checkin_time") %> <%= t("views.right_panel.detail.checkout_time") %> <%= t("views.right_panel.detail.checkin_by") %> <%= t("views.right_panel.detail.checkout_by") %> <%= t("views.right_panel.detail.booking_status") %> <%= t("views.right_panel.detail.booking_date") %>
<%= link_to booking.booking_id, transactions_booking_path(booking) %> <%= link_to booking.sale_id, transactions_sale_path(booking.sale_id) rescue '-' %> <%= booking.dining_facility.name %> <%= booking.checkin_at.utc.getlocal.strftime("%I:%M %p") %> <%= booking.checkout_at.utc.getlocal.strftime("%I:%M %p") rescue '-' %> <%= booking.checkin_by rescue '-' %> <%= booking.checkout_by rescue '-' %> <%= booking.booking_status %> <%= booking.created_at.utc.getlocal.strftime("%d-%m-%Y %I:%M %p") %>

There is no data for search....


<% if @bookings != 0 %> <%= paginate @bookings %> <% end %>