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
I'm having an issue using this package with models that have a "created" event listener.
I've created a minimal repository with a clean Laravel 10 installation where the error occurs:
🔗 GitHub Repo
->saveQuietly() inside the static::created event should work without needing to call $model->refresh().
Actual behaviour
->saveQuietly() inside the static::created event only works after calling $model->refresh(). Without refreshing, it throws the exception: InvalidArgumentException Cannot update "id" field.
Thanks! 😊
The text was updated successfully, but these errors were encountered:
ext-mongodb: 1.20.1
mongodb/mongodb: ^1.8
Description:
I'm having an issue using this package with models that have a "created" event listener.
I've created a minimal repository with a clean Laravel 10 installation where the error occurs:
🔗 GitHub Repo
I have the following in my model:
However, when saving the model, I get the following error:
This exception is thrown in Builder.php#L742.
Example
This code triggers the error:
However, if I call saveQuietly() outside the static::created event, it works as expected:
Workaround
To make it work inside the static::created event, I need to call refresh() before saving:
Now, the model saves without issues:
This behavior seems to be a bug because it worked correctly in Laravel 9.* with "jenssegers/mongodb": "^3.9".
Steps to reproduce
artisan tinker
Expected behaviour
->saveQuietly()
inside thestatic::created
event should work without needing to call$model->refresh()
.Actual behaviour
->saveQuietly()
inside thestatic::created
event only works after calling$model->refresh()
. Without refreshing, it throws the exception:InvalidArgumentException Cannot update "id" field.
Thanks! 😊
The text was updated successfully, but these errors were encountered: