I'm using Laravel Scout with Meilisearch for typeahead searching of a list of titles. I am also using it to match duplicates with different spellings. The issue I have is that Meilisearch brings up results that match any word. For example typing the world
brings up:
The First Result
The Second Result
The World
World, The
World Games
World Test
When I need it to match both worlds and only return the world
and World, The
. Is there a way to achieve this with Meilisearch?