From 6b6dfa2382f215ad6d7dbbfdb2feb5c2bfc47f55 Mon Sep 17 00:00:00 2001 From: Dominique Leibundgut Date: Tue, 17 Nov 2020 18:23:47 +0100 Subject: [PATCH 1/2] Fix wrong prefix config option --- src/FortifyServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FortifyServiceProvider.php b/src/FortifyServiceProvider.php index 31c41e9c..0680ef82 100644 --- a/src/FortifyServiceProvider.php +++ b/src/FortifyServiceProvider.php @@ -125,7 +125,7 @@ protected function configureRoutes() Route::group([ 'namespace' => 'Laravel\Fortify\Http\Controllers', 'domain' => config('fortify.domain', null), - 'prefix' => config('fortify.path'), + 'prefix' => config('fortify.prefix'), ], function () { $this->loadRoutesFrom(__DIR__.'/../routes/routes.php'); }); From 35b478919e2528f6bbd94daf3e862ec80d46607c Mon Sep 17 00:00:00 2001 From: Dominique Leibundgut Date: Tue, 17 Nov 2020 18:26:22 +0100 Subject: [PATCH 2/2] Fix config documentation typo --- stubs/fortify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/fortify.php b/stubs/fortify.php index f8c0e1f5..6b5e3cc2 100644 --- a/stubs/fortify.php +++ b/stubs/fortify.php @@ -68,7 +68,7 @@ | Fortify Routes Prefix / Subdomain |-------------------------------------------------------------------------- | - | Here you may specify which prefix Fortify will assign to the all routes + | Here you may specify which prefix Fortify will assign to all the routes | that it registers with the application. If necessary, you may change | subdomain under which all of the Fortify routes will be available. |