PostgreSQL Full Text Search for Laravel Scout
This package makes it easy to use native PostgreSQL Full Text Search capabilities with Laravel Scout:
// plainto_tsquery()
$posts = App\Post::search('cat rat')
->usingPlainQuery()->get()
// phraseto_tsquery()
$posts = App\Post::search('cat rat')...
eplus.dev2 min read