I need to check, if for each item in @line_items
if it is in different array say @quote_items
Controller:
def index
@line_items = LineItem.all
@quote_items = QuoteItem.all
end
View:
<% for line_item in @line_items %>
<% if @quote_items.include?(line_item) %>
line_item in quote item!
<% else %>
line_item NOT in quote item!
<% end %>
...
<% end %>
Is there an easy way to do this? include?
doesn't seem to work the way I want. Seems to just yield false for me all the the time.