Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function boot() |
||
21 | { |
||
22 | $this->publishes([ |
||
23 | __DIR__ . '/config/laravel-google-structured-data-testing-tool.php' => config_path('laravel-google-structured-data-testing-tool.php'), |
||
24 | ], 'config'); |
||
25 | |||
26 | $this->loadViewsFrom(__DIR__ . '/views', 'laravel-google-structured-data-testing-tool'); |
||
27 | |||
28 | $this->publishes([ |
||
29 | __DIR__ . '/views' => base_path('resources/views/vendor/laravel-google-structured-data-testing-tool'), |
||
30 | ]); |
||
31 | } |
||
32 | |||
72 |