2016-07-21 15:35:23 +03:00
|
|
|
<?php namespace App\Ninja\Datatables;
|
2016-05-23 19:52:20 +03:00
|
|
|
|
|
|
|
|
class EntityDatatable
|
|
|
|
|
{
|
|
|
|
|
public $entityType;
|
|
|
|
|
public $isBulkEdit;
|
|
|
|
|
public $hideClient;
|
|
|
|
|
|
|
|
|
|
public function __construct($isBulkEdit = true, $hideClient = false)
|
|
|
|
|
{
|
|
|
|
|
$this->isBulkEdit = $isBulkEdit;
|
|
|
|
|
$this->hideClient = $hideClient;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function columns()
|
|
|
|
|
{
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function actions()
|
|
|
|
|
{
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
}
|