class Item < ActiveRecord::Base belongs_to :product cattr_reader :per_page @@per_page = 4 def in_stock? quantity.to_i > 0 end def to_param self.string_id end end