This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources :products do | |
member do | |
post :add_to_cart | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> 數量 : <%= render_product_quantity(@product) %> </div> | |
<div class="product-price"> $ <%= render_product_price(@product) %> </div> | |
<div class="pull-right"> | |
<%= link_to("加入購物車", add_to_cart_product_path(@product) , :method => :post , :class => "btn btn-primary btn-lg btn-danger") %> | |
</div> | |
NewerOlder