| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function boot() |
||
| 19 | { |
||
| 20 | |||
| 21 | //Publishes package config file to applications config folder |
||
| 22 | $this->publishes([__DIR__.'/config/systempay.php' => config_path('systempay.php')], ['systempay-config']); |
||
| 23 | |||
| 24 | // Load views from current directory |
||
| 25 | $this->loadViewsFrom(__DIR__.'/resources/views', 'laravel-systempay'); |
||
| 26 | |||
| 27 | Blade::component('systempay', Systempay::class); |
||
| 28 | } |
||
| 39 |