Here is my case:
I have 3 menus (vietnamese, chinese, japanese) that each contains 10 dishes.
I wonder how should i route these to produce one page per menu with its dishes.
So that I in the view can have 3 links in the frontpage view, one for each menu.
Right now it looks like this:
resources :menus
But then the index view would show ALL menus with all dishes.
I find RESTful very hard to understand in rails.
Would be glad for any help!