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