1 | <?php |
||
8 | class DataTablesServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Register the service provider. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | 7 | public function register() |
|
23 | |||
24 | /** |
||
25 | * Register the original DataTables service providers. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | 7 | protected function registerOriginalDataTables() |
|
36 | |||
37 | /** |
||
38 | * Replace the original DataTables bindings. |
||
39 | * |
||
40 | * @return void |
||
41 | */ |
||
42 | 7 | protected function replaceDataTablesBindings() |
|
51 | |||
52 | /** |
||
53 | * Configure DataTables. |
||
54 | * |
||
55 | * @return void |
||
56 | */ |
||
57 | 7 | protected function configureDataTables() |
|
73 | |||
74 | /** |
||
75 | * Merge the given configuration with the existing configuration. |
||
76 | * |
||
77 | * @param string $key |
||
78 | * @param array $config |
||
79 | * @return void |
||
80 | */ |
||
81 | 7 | protected function mergeConfig($key, array $config) |
|
87 | } |
||
88 |