This commit is contained in:
Jakob Schrettenbrunner 2017-04-01 01:58:05 +02:00
parent 0ee80b1fec
commit e613e44749

View file

@ -182,4 +182,14 @@ class LoginController extends Controller
return redirect()->route('auth.login');
}
}
/**
* Get the login username to be used by the controller.
*
* @return string
*/
public function username()
{
return 'user';
}
}