mikebronner / laravel-model-caching

Eloquent model-caching made easy.
MIT License
2.22k stars 212 forks source link

Saving not working with eloquent strict mode #437

Open jamesRUS52 opened 1 year ago

jamesRUS52 commented 1 year ago

When using in app service provider

Model::shouldBeStrict(!$this->app->isProduction());

saving model not working with exception Illuminate \ Database \ Eloquent \ MissingAttributeException The attribute [query] either does not exist or was not retrieved for model [app\Models\MyModel].

Eloquent Query Please provide the complete eloquent query that caused the bug, for example:

$record = MyModel::find($id);
$record->field = 'foo';
$record->save();

Stack Trace Illuminate \ Database \ Eloquent \ MissingAttributeException The attribute [query] either does not exist or was not retrieved for model [app\Models\MyModel].

Environment PHP 8.1.6 Laravel 9.36.3 Model Caching: 0.12.5

work around add to model

protected $query = null; // required property for Cachable trait

I think you should add this in trait

jamesRUS52 commented 8 months ago

up

webard commented 4 months ago

Bump, error is present with newest wersion of laravel and this package.