Rails rookie here. Attempting to link to a carts show page from an image in my navbar. the code:
<%= link_to(image_tag("cart.png"),cart_path) %>
gives me this error:
No route matches {:action=>"show", :controller=>"carts"} missing required keys: [:id]
My carts controller starts with this:
def show
begin
@cart = Cart.find(params[:id])
Any insight from you wizards would be great.