Listing carts

<% @carts.each do |cart| %> <% end %>
<%= link_to 'Show', cart %> <%= link_to 'Edit', edit_cart_path(cart) %> <%= link_to 'Destroy', cart, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New Cart', new_cart_path %>