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.
1 parent 1fc2ca8 commit aacd9a3Copy full SHA for aacd9a3
src/QueryDataTable.php
@@ -278,12 +278,12 @@ public function columnSearch()
278
$columns = $this->request->columns();
279
280
foreach ($columns as $index => $column) {
281
- if (! $this->request->isColumnSearchable($index)) {
+ $column = $this->getColumnName($index);
282
+
283
+ if (! $this->request->isColumnSearchable($index) || $this->isBlacklisted($column)) {
284
continue;
285
}
286
- $column = $this->getColumnName($index);
-
287
if ($this->hasFilterColumn($column)) {
288
$keyword = $this->getColumnSearchKeyword($index, $raw = true);
289
$this->applyFilterColumn($this->getBaseQueryBuilder(), $column, $keyword);
0 commit comments