We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
when I search by multiple keywords f.ex.:
Car::search('toyota hybrid', ['name' => 10], true)->get();
the results contanins occurance of "*toyota*" or "*hybrid*" with the same weight so the list looks like this:
"*toyota*"
"*hybrid*"
1. Toyota Camry 2. Toyota Prius Hybrid
Shouldn''t result be in the order:
1. Toyota Prius Hybrid 2. Toyota Camry
because name Toyota Prius Hybrid have 2 hits while Toyota Camry is only 1 hit? Or is that possible to configure that all keywords should be hit?
Toyota Prius Hybrid
Toyota Camry
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
when I search by multiple keywords f.ex.:
the results contanins occurance of
"*toyota*"
or"*hybrid*"
with the same weight so the list looks like this:Shouldn''t result be in the order:
because name
Toyota Prius Hybrid
have 2 hits whileToyota Camry
is only 1 hit? Or is that possible to configure that all keywords should be hit?The text was updated successfully, but these errors were encountered: