Christopher

Results 1 comments of Christopher

In my case, I was trying to search for only deleted models. This worked for me: ``` Model::search($text, function ($query) { return $query->onlyTrashed(); }); ```