Skip to content

Instantly share code, notes, and snippets.

@sdlong
Last active August 29, 2015 14:03
Show Gist options
  • Save sdlong/cbd6c62548248b856ff9 to your computer and use it in GitHub Desktop.
Save sdlong/cbd6c62548248b856ff9 to your computer and use it in GitHub Desktop.
<li>
<%= link_to carts_path do %>
購物車
<i class="glyphicon glyphicon-shopping-cart"> </i>
( <%= cart_items_count(current_cart) %> )
<% end %>
</li>
module CartsHelper
def cart_items_count(cart)
cart.cart_items.count
end
end
resources :carts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment