Method: TbCommerce::ProductsHelper#price_minimum
- Defined in:
- app/helpers/tb_commerce/products_helper.rb
#price_minimum(product) ⇒ Object
7 8 9 10 |
# File 'app/helpers/tb_commerce/products_helper.rb', line 7 def price_minimum(product) prices = product.product_skus.sort{ |x,y| x.add_price <=> y.add_price } number_to_currency(prices.first.price) end |