You can create helper as button_to link -
<%= button_to product.image_url, line_items_path(:product_id => product) %>
and in application_helper
def button_to(image_path, link) link_to (image_tag(image_path, :class => "img"), link) end
I think this is what you want.
source share