I am aware of the advice "fat models / skinny controllers" and "never put logic in the view"; however, it would help me to learn from an example. In the following, what is the best way to rewrite the code so that the query is not in the view?
Model
class Product < ActiveRecord::Base
belongs_to :order
end
class Order < ActiveRecord::Base
has_many :products
end
Controller
@orders = Order.all
View
<% @orders.each do |o| %>
<%= Product.where("order_id = ?", o.id).count %>
<% end %>