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 3f3f652 + e58c54e commit b6f6d35Copy full SHA for b6f6d35
src/QueryDataTable.php
@@ -120,9 +120,9 @@ protected function searchPanesSearch()
120
}
121
122
if ($this->searchPanes[$column] && $callback = $this->searchPanes[$column]['builder']) {
123
- $callback($this->getBaseQueryBuilder(), $values);
+ $callback($this->query, $values);
124
} else {
125
- $this->getBaseQueryBuilder()->whereIn($column, $values);
+ $this->query->whereIn($column, $values);
126
127
128
$this->isFilterApplied = true;
0 commit comments