/home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Columns
NameSizeModeActions
Action.php9100644editdlrm
Checkbox.php13050644editdlrm
Index.php8280644editdlrm
Edit: /home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Columns/Checkbox.php (1305B)
'html->attributes($attributes) . '/>', 'title' => 'html->attributes($attributes + ['id' => 'dataTablesCheckbox']) . '/>', 'data' => 'checkbox', 'name' => 'checkbox', 'orderable' => false, 'searchable' => false, 'exportable' => false, 'printable' => true, 'width' => '10px', ], $attributes); $column = new Column($attributes); if ($position === true) { $this->collection->prepend($column); } elseif ($position === false || $position >= $this->collection->count()) { $this->collection->push($column); } else { $this->collection->splice($position, 0, [$column]); } return $this; } }