公共函数process(Request $request){ $validated = $request->validate([ “电子邮件”=> ['必填', '电子邮件'], '密码' => '必需的' ]); if(auth()->尝试($validated)){ $request->session()->regenerate(); return redirect('/')->with('information-message', '欢迎回来!'); } return redirect('login')->with('failed-message', '登录失败,请重试!'); }</pre> <p><strong>information-message.blade.php:</strong></p>@if (session()->has('信息消息')) <div x-data="{show : true}" x-show="show" x-init="setTimeout(() => show = false, 5000)" class="flex 固定 m-2 底部- 0 right-0 z-20 items-center bg-blue-700 text-white text-sm font-bold px-4 py-3" role="alert">
P粉4038048442023-08-07 13:08:44
您可以使用 Auth 门面来获取当前用户。
Auth::user()
根据你的情况
return redirect('/')->with('information-message', 'Welcome Back! '.Auth::user()->name);