We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb305a commit 3bbb09dCopy full SHA for 3bbb09d
src/ServiceProvider.php
@@ -50,7 +50,11 @@ public function boot()
50
51
$this->publishes([
52
__DIR__ . '/../config/report-generator.php' => config_path('report-generator.php')
53
- ], 'config');
+ ], 'laravel-report:config');
54
+
55
+ $this->publishes([
56
+ __DIR__ . '/views' => resource_path('views/vendor/jimmyjs'),
57
+ ], 'laravel-report:view-template');
58
}
59
60
protected function registerAliases()
@@ -73,4 +77,4 @@ public function provides()
73
77
return [];
74
78
75
79
76
-}
80
+}
0 commit comments