whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
yajra
/
laravel-datatables-html
/
src
/
Html
/
Columns
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/yajra/laravel-datatables-html/src/Html/Columns/Action.php
<?php namespace Yajra\DataTables\Html\Columns; use Yajra\DataTables\Html\Column; trait Action { /** * Add an action column. * * @param array $attributes * @param bool $prepend * @return $this */ public function addAction(array $attributes = [], bool $prepend = false): static { $attributes = array_merge([ 'defaultContent' => '', 'data' => 'action', 'name' => 'action', 'title' => 'Action', 'render' => null, 'orderable' => false, 'searchable' => false, 'exportable' => false, 'printable' => true, 'footer' => '', ], $attributes); if ($prepend) { $this->collection->prepend(new Column($attributes)); } else { $this->collection->push(new Column($attributes)); } return $this; } }
Copyright ©2021 || Defacer Indonesia