1 | <?php |
||
11 | abstract class DataTableHtml implements DataTableHtmlBuilder |
||
12 | { |
||
13 | /** |
||
14 | * @var \Yajra\DataTables\Html\Builder |
||
15 | */ |
||
16 | protected $htmlBuilder; |
||
17 | |||
18 | /** |
||
19 | * @return \Yajra\DataTables\Html\Builder |
||
20 | */ |
||
21 | public static function make() |
||
25 | |||
26 | /** |
||
27 | * @param string $name |
||
28 | * @param mixed $arguments |
||
29 | * @return mixed |
||
30 | * @throws \Exception |
||
31 | */ |
||
32 | public function __call($name, $arguments) |
||
40 | |||
41 | /** |
||
42 | * @return \Yajra\DataTables\Html\Builder |
||
43 | */ |
||
44 | protected function getHtmlBuilder() |
||
52 | |||
53 | /** |
||
54 | * @param mixed $builder |
||
55 | * @return static |
||
56 | */ |
||
57 | public function setHtmlBuilder($builder) |
||
63 | } |
||
64 |