You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, and first of all many thanks for all the effort put into this great and helpful package! 🙏
With the latest release 1.3.6, it appears that some behaviour has changed. I have both a parent and a child model that both implement a booted method:
protected static function booted(): void
{
static::creating(static function (self $model) {
//
});
}
Now, when creating a new Child model, it seems like the creating method of the child model is no longer invoked, but the booted method of the parent is called instead. Is this the expected behaviour, or am I missing something?
Thank you!
The text was updated successfully, but these errors were encountered:
Hi there, and first of all many thanks for all the effort put into this great and helpful package! 🙏
With the latest release 1.3.6, it appears that some behaviour has changed. I have both a parent and a child model that both implement a booted method:
Now, when creating a new Child model, it seems like the creating method of the child model is no longer invoked, but the booted method of the parent is called instead. Is this the expected behaviour, or am I missing something?
Thank you!
The text was updated successfully, but these errors were encountered: