1 | <?php |
||
10 | class AgentsDataTable extends AbstractDataTable |
||
11 | { |
||
12 | /** |
||
13 | * {@inheritdoc} |
||
14 | */ |
||
15 | protected $model = Agent::class; |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | protected $createButton = false; |
||
21 | |||
22 | /** |
||
23 | * Get columns. |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | protected function getColumns(): array |
||
37 | } |
||
38 |