1 | <?php |
||
12 | class DatatableServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * Indicates if loading of the provider is deferred. |
||
17 | * |
||
18 | * @var bool |
||
19 | */ |
||
20 | protected $defer = true; |
||
21 | |||
22 | /** |
||
23 | * Register the application services. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function register() |
||
44 | |||
45 | /** |
||
46 | * Get the services provided by the provider. |
||
47 | * |
||
48 | * @return array |
||
49 | */ |
||
50 | public function provides() |
||
56 | |||
57 | /** |
||
58 | * Perform post-registration booting of services. |
||
59 | * |
||
60 | * @return void |
||
61 | */ |
||
62 | public function boot() |
||
81 | |||
82 | |||
83 | } |
||
84 |