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 860dc2e commit 05a717bCopy full SHA for 05a717b
src/Providers/LaravelTrailingSlashServiceProvider.php
@@ -12,14 +12,14 @@ public function boot()
12
{
13
if ($this->app->runningInConsole()) {
14
$this->publishes([
15
- __DIR__ . '/../config/config.php' => config_path('laravel-trailing-slash.php'),
+ __DIR__ . '/../../config/config.php' => config_path('laravel-trailing-slash.php'),
16
], 'config');
17
}
18
19
20
public function register()
21
22
- $this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'laravel-trailing-slash');
+ $this->mergeConfigFrom(__DIR__ . '/../../config/config.php', 'laravel-trailing-slash');
23
24
$this->app->singleton('url', function ($app) {
25
$routes = $app['router']->getRoutes();
0 commit comments