Guest User

Untitled

a guest
Oct 20th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. belongs_to :vegetable
  2. belongs_to :protein
  3. belongs_to :starch
  4. accepts_nested_attributes_for :vegetable, :protein, :starch
  5.  
  6. has_one :recipe
  7.  
  8. <table>
  9. <thead>
  10. <tr>
  11. <th> Vegetable Name </th>
  12. <th> Protein Name </th>
  13. </tr>
  14. </thead>
  15. <% @recipes.each do |recipes| %>
  16. <tr>
  17. <td> <% recipe.vegetable.name %> <td>
  18. <td> <% recipe.protein.name %> <td>
  19. </tr>
  20.  
  21. def recipe_params
  22. params.require(:recipe).permit(:vegetable_id, :protein_id, :starch_id)
  23. end
Add Comment
Please, Sign In to add comment