我已经使用Laravel 4.2很长一段时间了(仍在学习)但我似乎无法使用任何Redirect :: 函数
这是错误
Class' Illuminate \ Routing \ Redirector'找不到
这是我的代码。
class RegisterController extends BaseController {
public function confirm()
{
$validator = Validator::make(Input::all(), Registration::$rules);
if($validator->fails())
{
return Redirect::back();
}
}
}
我似乎无法在Google上找到有关此问题的任何信息。 以前有人经历过吗?
谢谢!
答案 0 :(得分:1)
如果缺少框架/包中的类,则运行
总是有帮助的composer dump-autoload
甚至update
(也会调用dump-autoload
)
composer update