| 1 | <?php |
||
| 11 | class PlatformsDataTable extends AbstractDataTable |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * {@inheritdoc} |
||
| 15 | */ |
||
| 16 | protected $model = Platform::class; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * {@inheritdoc} |
||
| 20 | */ |
||
| 21 | protected $transformer = PlatformTransformer::class; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | protected $createButton = false; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Get columns. |
||
| 30 | * |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | protected function getColumns(): array |
||
| 41 | } |
||
| 42 |