Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | /** |
||
23 | * Get columns. |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | protected function getColumns(): array |
||
28 | { |
||
29 | return [ |
||
30 | 'family' => ['title' => trans('cortex/statistics::common.family'), 'responsivePriority' => 0], |
||
31 | 'model' => ['title' => trans('cortex/statistics::common.model')], |
||
32 | 'brand' => ['title' => trans('cortex/statistics::common.brand')], |
||
33 | 'count' => ['title' => trans('cortex/statistics::common.count')], |
||
34 | ]; |
||
35 | } |
||
36 | } |
||
37 |