I have a Collection "Map" and two models "Zone" and "Section".
Zone attributes:
zone_title: "New zone"
width: 0
height: 0
order: 0
sections: []
Section attributes:
section_title: "New section"
content: "Some texts"
order: 0
How do I associate these two models? each Zone can have many Section.
Each Zone can be sortable within the Map and each Section can be sortable within the Zone.
What is the best practice to do that?