| 1 | <?php |
||
| 9 | class ViewServiceProvider extends ServiceProvider |
||
| 10 | { |
||
| 11 | protected $defer = true; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Register the HTML builder instance. |
||
| 15 | * |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | public function register() |
||
| 32 | |||
| 33 | public function boot() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Allow configs to be published but use the included by default. |
||
| 41 | */ |
||
| 42 | protected function loadConfigs() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Register views |
||
| 55 | * |
||
| 56 | * @return void |
||
| 57 | */ |
||
| 58 | protected function loadViews() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Get the services provided by the provider. |
||
| 67 | * |
||
| 68 | * @return array |
||
| 69 | */ |
||
| 70 | public function provides() |
||
| 74 | } |
||
| 75 |