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