I am working with has many through association in Application. I access email from employee table in INDEX action of InventoryController like below code:
<% @inventories.each do |inventory| %>
<% inventory.employee_inventories.each do |e| %>
<%if e[:status]== 'ALLOTED'%>
<%= e.employee.email%>
<% end %>
<% end %>
<% end %>
Please help me How to DRY this code in view? Thanks in advance
Unless you want to create a scope as suggested by @Pavan, just introduce this var and use it.