1 | <?php |
||
12 | class ColumnsTotal extends Extension implements Placable |
||
13 | { |
||
14 | use HtmlAttributes, ElementPlacementTrait, ElementViewTrait; |
||
15 | |||
16 | /** |
||
17 | * @var string|\Illuminate\View\View |
||
18 | */ |
||
19 | protected $view = 'display.extensions.columns_total'; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $placement = 'table.header'; |
||
25 | |||
26 | /** |
||
27 | * @var Collection |
||
28 | */ |
||
29 | protected $elements; |
||
30 | |||
31 | public function __construct() |
||
35 | |||
36 | public function set(array $elements, $columnsNumber = 0) |
||
49 | |||
50 | public function toArray() |
||
60 | } |
||
61 |