Laravel\Scout\Searchable trait is attached to a model associated with a Nova resource, Nova will automatically begin using Scout when performing searches against that resource. There is no other configuration required.
Customizing Scout Searches
If you would like to call methods on theLaravel\Scout\Builder instance before it executes your search query against your search engine, you may override the scoutQuery method on your resource:
Limiting Scout Search Results
You can customize the amount of search results returned from your Scout search engine by defining thescoutSearchResults property on the resource class that is associated with the Scout searchable model:
Disabling Scout Search
You may disable Scout search support for a specific resource by defining ausesScout method on the resource class. When Scout search support is disabled, simple database queries will be used to search against the given resource, even if the associated resource model includes the Scout Searchable trait: