-
-
Save thomasv314/3489806 to your computer and use it in GitHub Desktop.
explore view
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% @towns.each do |town| %> | |
<div> | |
<%= town.town %> - | |
<%= town.postcards.last.eat %> | |
</div> | |
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def explore | |
@states = State.find(params[:id]) | |
@towns = @states.towns.find_all | |
@towns.each do |t| | |
t.postcards.last | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment