pdfshop/app/models/cart_product.rb

10 lines
157 B
Ruby

# Shopping cart_products
class CartProduct < ApplicationRecord
belongs_to :cart
belongs_to :product
def multiple_price
quantity * price
end
end