The refresh
method in the Model should set wasRecentlyCreated
to false
#54956
Replies: 5 comments 1 reply
-
The When we create a record and then call
This is important for application logic that needs to know if a record was just created, even after refreshing to get the latest database values (like auto-incremented IDs or default values). |
Beta Was this translation helpful? Give feedback.
-
I understand your argument, but there seems to be a bit of confusion around the behavior of the When you find an instance of the Product model like this: $product = new Product();
$product->name = 'Sample Product';
$product->price = 19.99;
$product->save();
$product = Product::find($product->id);
dd($product->wasRecentlyCreated); // this will be false In this case request lifecycle is the same, and the model was reloaded from database. Taking your argument into account, in my example, |
Beta Was this translation helpful? Give feedback.
-
Please correct me if I'm wrong, but you're creating new object lifecycle so |
Beta Was this translation helpful? Give feedback.
-
It's relative because the behavior is the same and the record was loaded from the database the same way as with From my point of view, it does not make sense that a record loaded from the database has a |
Beta Was this translation helpful? Give feedback.
-
Also the refresh should use write pdo or at least take an option to use it. Because it does not, we are not using it. |
Beta Was this translation helpful? Give feedback.
-
Laravel Version
12.1.1
PHP Version
8.3.17
Database Driver & Version
No response
Description
The refresh method in the Model does not set the wasRecentlyCreated property to false after it is called.
Steps To Reproduce
Beta Was this translation helpful? Give feedback.
All reactions