Imali Susanimalisusan.hashnode.dev·Jun 14, 2023Enhancing Laravel Scout Search with a Stop Words Removal HelperIntroduction When building search functionality with Laravel Scout, it's essential to provide users with accurate and relevant results. One common obstacle in search algorithms is the presence of stop words, which are commonly used words that carry l...Discuss·3 likes·29 readsLaravel
David Nguyeneplus.dev·May 9, 2023PostgreSQL Full Text Search for Laravel ScoutThis 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')...Discuss·85 readsLaravelLaravel
Ruben RoblesforOpen Southenersblog.opensoutheners.com·Sep 12, 2022Extend Meilisearch integration capabilities on your Laravel ScoutLaravel Scout is the perfect full-text search implementation for your Laravel application, it allows to connect to multiple search engines: Collections (for local testing), database (for a much simple to maintain), Meilisearch or Algolia (for a much ...Discuss·156 readsOpen SourcePHP