1 | <?php |
||
16 | class ButtonsServiceProvider extends ServiceProvider |
||
17 | { |
||
18 | /** |
||
19 | * Indicates if loading of the provider is deferred. |
||
20 | * |
||
21 | * @var bool |
||
22 | */ |
||
23 | protected $defer = false; |
||
24 | |||
25 | /** |
||
26 | * Bootstrap the application events. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function boot() |
||
38 | |||
39 | /** |
||
40 | * Publish datatables assets. |
||
41 | */ |
||
42 | protected function publishAssets() |
||
57 | |||
58 | /** |
||
59 | * Register datatables commands. |
||
60 | */ |
||
61 | protected function registerCommands() |
||
66 | |||
67 | /** |
||
68 | * Register the service provider. |
||
69 | * |
||
70 | * @return void |
||
71 | */ |
||
72 | public function register() |
||
77 | } |
||
78 |