We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe8a9c9 commit 7022cdeCopy full SHA for 7022cde
src/ServiceProvider.php
@@ -12,9 +12,12 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider
12
*/
13
public function register()
14
{
15
- // Merge config
+ // Config
16
+ $this->publishes([
17
+ __DIR__.'/config/route2class.php' => config_path('route2class.php')
18
+ ]);
19
$this->mergeConfigFrom(
- __DIR__.'/config/routetoclass.php', 'routetoclass'
20
+ __DIR__.'/config/route2class.php', 'route2class'
21
);
22
23
// Create app singleton
0 commit comments