@@ -63,7 +63,7 @@ |
||
63 | 63 | }); |
64 | 64 | |
65 | 65 | $this->app->alias('datatables', Datatables::class); |
66 | - $this->app->singleton('datatables', function() { |
|
66 | + $this->app->singleton('datatables', function () { |
|
67 | 67 | return new Datatables; |
68 | 68 | }); |
69 | 69 |
@@ -75,7 +75,7 @@ |
||
75 | 75 | |
76 | 76 | collect($this->request->searchableColumnIndex())->map(function ($index) { |
77 | 77 | return $this->getColumnName($index); |
78 | - })->reject(function($column) { |
|
78 | + })->reject(function ($column) { |
|
79 | 79 | return $this->isBlacklisted($column) && !$this->hasCustomFilter($column); |
80 | 80 | })->each(function ($column) use ($keyword, $query) { |
81 | 81 | if ($this->hasCustomFilter($column)) { |