<p>如何将特定数据的名称包含在我的返回信息消息中?<br /><br />>用户控制器:</p><p><strong></strong> ;</p>
公共函数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">
您可以使用 Auth 门面来获取当前用户。
根据你的情况