Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function boot() |
||
15 | { |
||
16 | // Publish a config file |
||
17 | $this->publishes([ |
||
18 | __DIR__.'/../config/payable.php' => config_path('payable.php'), |
||
19 | ], 'config'); |
||
20 | |||
21 | // Publish migrations |
||
22 | $this->publishes([ |
||
23 | __DIR__.'/../database/migrations/2017_05_11_163005_create_payments_table.php' |
||
24 | => database_path('migrations/2017_05_11_163005_create_payments_table.php'), |
||
25 | ], 'migrations'); |
||
26 | |||
27 | // Load routes |
||
28 | $this->loadRoutesFrom(__DIR__.'/../routes/web.php'); |
||
29 | } |
||
30 | |||
41 |