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 54053ae commit bdc1a21Copy full SHA for bdc1a21
src/yajra/Datatables/Datatables.php
@@ -7,7 +7,7 @@
7
* @package Laravel
8
* @category Package
9
* @author Arjay Angeles <aqangeles@gmail.com>
10
- * @version 3.6.6
+ * @version 3.6.8
11
*/
12
13
use Closure;
@@ -446,7 +446,7 @@ private function doFiltering()
446
public function doColumnSearch(array $columns)
447
{
448
for ($i = 0, $c = count($columns); $i < $c; $i++) {
449
- if ($columns[$i]['searchable'] == "true" and ! empty($columns[$i]['search']['value']) and ! empty($columns[$i]['name'])) {
+ if ($columns[$i]['searchable'] == "true" && $columns[$i]['search']['value'] <> '' && ! empty($columns[$i]['name'])) {
450
$column = $columns[$i]['name'];
451
$keyword = $this->setupKeyword($columns[$i]['search']['value']);
452
0 commit comments