【发布时间】:2020-08-20 02:31:02
【问题描述】:
我想在使用该数据重定向到另一个页面时传递用户数据并在该页面中使用它。
$mobile = (int) $request->mobile;
$user = User::where('mobile',$mobile)->first();
if ($user->count() > 0 && Hash::check($request->password, $user->password))
{
return redirect('/user_info')->with('user',$user);
}
我想在其中使用用户数据的视图:
<div class="row">
<h3>Valnteer: {{ $user->name }}</h3>
</div>
我遇到的问题是:
未定义变量:用户
【问题讨论】:
-
可以设置会话变量吗?
-
这是您问题的解决方案:stackoverflow.com/questions/25078452/…
-
这能回答你的问题吗? How to send data using redirect with Laravel