Last active
August 29, 2015 14:00
-
-
Save BaylorRae/a1c785837b0d4e1b1f8a to your computer and use it in GitHub Desktop.
Category Links
This file contains hidden or 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
<% Category.order(:title).each do |category| %> | |
<%= link_to category.title, category_products_path(category.id) %> | |
<% end %> |
This file contains hidden or 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
# Prefix Verb URI Pattern Controller#Action | |
# category_products GET /categories/:category_id/products(.:format) products#index | |
resources :categories do | |
resources :products | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment