<% content_for :javascript_includes do %> <%= javascript_include_tag "slick" %> <%= stylesheet_link_tag "slick" %> <% end %>

OFFICIAL Hotel

<% @hotels.each_with_index do |hotel, x| %>
<%= hotel.name %>
<% ordering_1 = x%2 == 0 ? "order-md-1" : "order-md-2" %> <% ordering_2 = x%2 == 0 ? "order-md-2" : "order-md-1" %> <% hotel_images = hotel.hotel_images %>
<% hotel_images .each do |img| %>
<%= image_tag img.image.url(:medium), class: "img-fluid" %>
<% end %>
<% hotel_images.each do |img| %>
<%= image_tag img.image.url(:thumb), class: "img-fluid" %>
<% end %>

Hotel Rating : <%= raw hotel_star(hotel.rating) %>
Address : <%= hotel.address %>
Phone : <%= hotel.phone %>

<%= raw hotel.description %>
<% end %>