1 | <?php |
||
12 | class LaravelAdminViewComposerServiceProvider extends ServiceProvider{ |
||
13 | |||
14 | |||
15 | /** |
||
16 | * Bootstrap any application services. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function boot() |
||
24 | |||
25 | /** |
||
26 | * Register any application services. |
||
27 | * |
||
28 | * This service provider is a great spot to register your various container |
||
29 | * bindings with the application. As you can see, we are registering our |
||
30 | * "Registrar" implementation here. You can add your own bindings too! |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function register() |
||
38 | |||
39 | } |