Listing carts

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

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