We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fb8571 commit 32d7151Copy full SHA for 32d7151
src/QueryDataTable.php
@@ -853,6 +853,23 @@ protected function globalSearch(string $keyword): void
853
});
854
}
855
856
+ /**
857
+ * Perform multi-term search by splitting keyword into
858
+ * individual words and searches for each of them.
859
+ *
860
+ * @param string $keyword
861
+ * @return void
862
+ */
863
+ protected function smartGlobalSearch($keyword): void
864
+ {
865
+ // Try scout search first & fall back to default search if disabled/failed
866
+ if ($this->applyScoutSearch($keyword)) {
867
+ return;
868
+ }
869
+
870
+ parent::smartGlobalSearch($keyword);
871
872
873
/**
874
* Append debug parameters on output.
875
*
0 commit comments