Filtering Meilisearch Search Results with Laravel Scout

Originally published at: Filtering Meilisearch Search Results with Laravel Scout - Server Side Up

In order to fine tune your Meilisearch implementation with Laravel Scout, it’s a good idea to set up some filters on your index. With Eloquent queries, filtering results is easy. Out of the box, you just add a ->where(‘x’, ‘y’) or other condition to return results with. You can do the same with Meilisearch, but…