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:
app/Nova/User.php
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:
app/Nova/User.php
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:
app/Nova/User.php