We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1c548f commit 2d6a377Copy full SHA for 2d6a377
src/AuthRouteMethods.php
@@ -15,7 +15,7 @@ public function auth()
15
return function ($options = []) {
16
$namespace = class_exists($this->prependGroupNamespace('Auth\LoginController')) ? null : 'App\Http\Controllers';
17
18
- $this->group(['namespace' => $namespace], function() {
+ $this->group(['namespace' => $namespace], function() use($options) {
19
// Login Routes...
20
if ($options['login'] ?? true) {
21
$this->get('login', 'Auth\LoginController@showLoginForm')->name('login');
0 commit comments