1 | <?php namespace Taskforcedev\LaravelForum; |
||
10 | class ServiceProvider extends IlluminateServiceProvider |
||
11 | { |
||
12 | public function register() |
||
15 | |||
16 | /** |
||
17 | * Loads config, views and routes from the package and parent app. |
||
18 | */ |
||
19 | public function boot() |
||
26 | |||
27 | /** |
||
28 | * Register the config and merge any published config. |
||
29 | */ |
||
30 | public function config() |
||
51 | |||
52 | /** |
||
53 | * Loads the views into the laravel-forum view namespace. |
||
54 | */ |
||
55 | public function views() |
||
59 | |||
60 | /** |
||
61 | * Loads the routes. |
||
62 | */ |
||
63 | public function routes() |
||
67 | |||
68 | /** |
||
69 | * Register the package migrations. |
||
70 | */ |
||
71 | public function migrations() |
||
75 | } |
||
76 |