I've installed and configured meilisearch + Laravel Scout package. My Model: class Post extends Model { use Searchable; } When I run php artisan scout:impo
I want to make it so that I can filter results based on a column that isn't searchable with Meilisearch and Laravel scout. So imagine a "Comment" table, with th
Laravel Scout: Is there a way that I search in only a specific field? At the moment this line is working fine: $es = Element::search($q)->get(); But