Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | $this->loadRoutesFrom(__DIR__.'/routes/web.php'); |
||
17 | $this->loadMigrationsFrom(__DIR__ .'/database/migrations'); |
||
18 | $this->loadViewsFrom(__DIR__.'/resources/views', 'media'); |
||
19 | $this->mergeConfigFrom( |
||
20 | __DIR__.'/config/media.php', 'media' |
||
21 | ); |
||
22 | |||
23 | $this->publishes([ |
||
24 | __DIR__.'/config/media.php' => config_path('media.php'), |
||
25 | __DIR__.'/database/migrations/' => database_path('migrations'), |
||
26 | ]); |
||
40 |