My App has this Events Models. If I create another Model: Dates... so an Event can have multiple Dates, should I use Events EmbedsMany Dates? or is better to use Events hasMany Dates and Dates belongsTo Event? What's the difference?
New Dates to the event might be added later after the Event been created.
I might be using a MySQL database, don't know if that has something to do.