我正在尝试制作自己的自定义 Laravel 10 登录/注册,因为我不想使用 breez 包,因为我想了解如何自己进行登录/注册。
但我似乎无法通过仪表板页面的身份验证。
我在仪表板函数上使用 if 语句 if(Auth::check()) 来对数据库中的用户进行身份验证。
但对我来说这不起作用,因为我不断收到从重定向回登录页面的错误消息(这只在我将新用户注册到数据库中时才会发生),但每当我尝试登录 我从登录功能中收到成功消息(进一步查看代码),同时仍在登录页面中。
AuthController(仪表板):
public function dashboard(): View
{
if(Auth::check()) {
return view('auth.dashboard');
}
return view('auth.login')->with('error', 'You are not allowed to access');
}
AuthController(登录):
public function loginPost(Request $request): RedirectResponse
{
$request->validate([
'email' => 'required',
'password' => 'required'
]);
$credentials = $request->only('email', 'password');
if(Auth::attempt($credentials)) {
$request->session()->regenerate();
return redirect()->intended(route('dashboard'))->with('success', 'You have successfully logged in');
}
return redirect(route('login'))->with('error', 'Oppes! You have entered invalid credentials');
}
web.php
Route::get('/register', [AuthController::class, 'register'])->name('register');
Route::post('/register', [AuthController::class, 'registerPost'])->name('register.post');
Route::get('/login', [AuthController::class, 'login'])->name('login');
Route::post('/login', [AuthController::class, 'loginPost'])->name('login.post');
Route::get('/dashboard', [AuthController::class, 'dashboard'])->name('dashboard');
Route::post('/logout', [AuthController::class, 'logout'])->middleware('auth')->name('logout');
我还没有找到任何解决方案,因此如果有人可以帮助我,我将不胜感激。
Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
hii,您的注销功能受到中间件的保护,您还需要添加仪表板路由中间件,您可以对需要身份验证中间件的路由进行分组。
Route::middleware('auth')->group(function () { Route::get('/dashboard', [AuthController::class, 'dashboard'])->name('dashboard'); Route::post('/logout', [AuthController::class, 'logout'])->name('logout'); });