I have model product
and vote
, I need to order products by votes count DESC.
product has_many :votes
, vote belongs_to :product
index_controller.rb
def index
@products = Product.all
end
I have model product
and vote
, I need to order products by votes count DESC.
product has_many :votes
, vote belongs_to :product
index_controller.rb
def index
@products = Product.all
end
If you have not votes column then use: