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
Copyright © 2021 Jogjafile Inc.
If you have not votes column then use: