Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function boot() |
||
13 | { |
||
14 | $this->publishes([ |
||
15 | __DIR__.'/../config/unitpay.php' => config_path('unitpay.php'), |
||
16 | ], 'config'); |
||
17 | |||
18 | $this->publishes([ |
||
19 | __DIR__.'/../resources/views' => base_path('resources/views/vendor/unitpay'), |
||
20 | ], 'views'); |
||
21 | |||
22 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'unitpay'); |
||
23 | } |
||
24 | |||
43 |