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
As Laravel is an open source project, we rely on the community to help us diagnose and fix issues as it is not possible to research and fix every issue reported to us via GitHub.
If possible, please make a pull request fixing the issue you have described, along with corresponding tests. All pull requests are promptly reviewed by the Laravel team.
Scout Version
10.1.0
Scout Driver
Algolia
Laravel Version
11.x
PHP Version
8.1.4
Database Driver & Version
No response
SDK Version
No response
Meilisearch CLI Version
No response
Description
When we retrieve a soft-deleted model from the Database and Save this model, it becomes again searchable.
Steps To Reproduce
Model::withTrashed()->where('id', 111)->first()
$model->comment = 'test';
$model->save()
saved()
Listener is fired and the Model becomes searchable, but it's still trashedsoft_delete
config is set tofalse
The text was updated successfully, but these errors were encountered: