In my offer.rb model I am doing some filtering after clients who have these offers. But I want to be able to pass another param in my scope to search by, for example, the age of a client or so.
This is what I have now in my offer model:
scope :with_client_id, lambda { |client_id| where(:client_id => client_id) }
In the view:
<%= f.select(:with_client_id, options_for_select(current_partner.clients.collect{|c| [c.name, c.id]}), { include_blank: true}) %>
How can I pass a client's age per say in this scope?
Thanks!
I left the scope unchanged and just modified the select in the view:
With the name_and_age method in the clients controller:
I can type some age too in the select2 box to make the filterring.