We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f849d5c + 99218da commit 7da8e24Copy full SHA for 7da8e24
src/QueryBuilder.php
@@ -227,7 +227,9 @@ protected function filterGlobal(Query $query): string
227
228
$search = [];
229
230
- foreach (explode(' ', $searchInput) as $word) {
+ $searchKeywords = $this->db->isExactMatch() ? [$searchInput] : explode(' ', $searchInput);
231
+
232
+ foreach ($searchKeywords as $word) {
233
$look = [];
234
235
foreach ($columns as $column) {
0 commit comments