if(count($data) == 1){
return view('welcome');
}
else {
// echo "dslkfjads";
Redirect::back()->with('message','Username or password not Match!');
}
登录时,Redirect :: back()函数无效。如果我正在打印任何显示
的内容答案 0 :(得分:7)
您必须返回一个响应对象,因此您的代码应如下所示:
if (count($data) == 1) {
return view('welcome');
} else {
return Redirect::back()->with('message', 'Username or password not Match!');
}