/
home
/
techb158
/
immovalet.com
/
vendor
/
yajra
/
laravel-datatables-html
/
src
/
Html
/
Columns
/
/home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Columns
mkdir
upload
Name
Size
Mode
Actions
Action.php
910
0644
edit
dl
rm
Checkbox.php
1305
0644
edit
dl
rm
Index.php
828
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Columns/Index.php
(828B)
<?php namespace Yajra\DataTables\Html\Columns; use Yajra\DataTables\Html\Column; trait Index { /** * Add a index column. * * @param array $attributes * @return $this */ public function addIndex(array $attributes = []) { $indexColumn = $this->config->get('datatables.index_column', 'DT_RowIndex'); $attributes = array_merge([ 'defaultContent' => '', 'data' => $indexColumn, 'name' => $indexColumn, 'title' => '', 'render' => null, 'orderable' => false, 'searchable' => false, 'exportable' => false, 'printable' => true, 'footer' => '', ], $attributes); $this->collection->push(new Column($attributes)); return $this; } }
Save
cmd:
run