diff --git a/src/Support/Model.php b/src/Support/Model.php index c273e8b..a9e9b04 100644 --- a/src/Support/Model.php +++ b/src/Support/Model.php @@ -101,6 +101,15 @@ abstract class Model implements Arrayable, ArrayAccess, Jsonable, JsonSerializab */ protected bool $timestampsInMilliseconds = true; + /** + * Indicates if the model was inserted during the object's lifecycle. + * + * This is here for Laravel 9+ compatibility, even though we never use this property. + * + * @var bool + */ + public $wasRecentlyCreated = false; + /** * The name of the "created at" column. *