Executing the following code in Laravel 10 app produces an error: **Undefined property: Spinen\ClickUp\Team::$wasRecentlyCreated** $user = new User([ 'name' => 'user', 'email' => 'test2@test.xz', 'password' => '123', 'clickup_token' => '%%%%%%', ]); $user->save(); $spaces = $user->clickUp()->teams->first()->spaces; I believe the reason to be is [updates in Laravel 9.x](https://github.com/laravel/framework/compare/8.x...9.x) - see files [Model.php](https://github.com/laravel/framework/compare/8.x...9.x#diff-18ad336e108907405b7f5a982ab771f9e5553b7496a9ee4a98fe29f7b7bfe111) and [HasAttributes.php](https://github.com/laravel/framework/compare/8.x...9.x#diff-59d24f1a8f0dd1e51ee7dffc8778133711634e928ecef4a91b63fc3851cb1579)