Nesting forms in CakePHP
- by Erik
I am wondering if there's a way in CakePHP to nest multiple models in a form?
What I'm trying to accomplish is to make a form for creating Posts that will also contain fields for adding Images (separate model) that will automatically be connected to the created post.
Something similar to Ruby on Rails ** accept_nested_attributes_for**.