| 1 | <?php |
||
| 7 | class LERNServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | 108 | public function register() |
|
| 19 | |||
| 20 | 108 | public function boot() |
|
| 21 | { |
||
| 22 | 108 | $this->publishes([ |
|
| 23 | 108 | __DIR__.'/../views/exceptions/default.blade.php' => base_path('resources/views/exceptions/default.blade.php'), |
|
| 24 | 108 | __DIR__.'/../migrations/2016_03_17_000000_create_lern_tables.php' => base_path('database/migrations/2016_03_17_000000_create_lern_tables.php'), |
|
| 25 | 108 | __DIR__.'/../migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php' => base_path('database/migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php'), |
|
| 26 | 108 | __DIR__.'/../migrations/2017_09_23_000000_add_ip_to_lern_tables.php' => base_path('database/migrations/2017_09_23_000000_add_ip_to_lern_tables.php'), |
|
| 27 | 108 | __DIR__.'/../config/lern.php' => base_path('config/lern.php'), |
|
| 28 | ]); |
||
| 29 | 108 | } |
|
| 30 | |||
| 31 | 108 | protected function handleDeprecatedConfigValues() |
|
| 46 | } |
||
| 47 |