We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
You may disable Scout search support for a specific resource by defining a usesScout
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:
namespace App\Nova;
class User extends Resource
{
/**
* Determine if this resource uses Laravel Scout.
*
* @return bool
*/
public static function usesScout()
{
return false;
}
}
If this post was enjoyable or useful for you, please share it! If you have comments, questions, or feedback, you can email my personal email. To get new posts, subscribe use the RSS feed.