| 1 | <?php |
||
| 8 | class HtmlServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Indicates if loading of the provider is deferred. |
||
| 12 | * |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | protected $defer = false; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Bootstrap the application events. |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function boot() |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Publish datatables assets. |
||
| 32 | */ |
||
| 33 | protected function publishAssets() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Register the service provider. |
||
| 43 | * |
||
| 44 | * @return void |
||
| 45 | */ |
||
| 46 | public function register() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Get the services provided by the provider. |
||
| 57 | * |
||
| 58 | * @return string[] |
||
| 59 | */ |
||
| 60 | public function provides() |
||
| 64 | } |
||
| 65 |