mikebronner / laravel-model-caching

Eloquent model-caching made easy.
MIT License
2.26k stars 215 forks source link

Support for full text search #421

Closed abetwothree closed 2 years ago

abetwothree commented 2 years ago

Recently Laravel added support for full-text search where clauses in the query builder. https://laravel.com/docs/9.x/queries#full-text-where-clauses

Looks like using that functionality with this package throws an error in line 240 of CacheKey.php because it didn't properly handle that where clause.

This pull request makes a few changes to support full-text where clauses.