【发布时间】:2014-08-27 09:04:11
【问题描述】:
我在我的应用程序中设置了重置密码,所以我发送了一封电子邮件,当我点击链接时,我收到了这个错误
ErrorException
Route [resetPassword] not defined. (View:C:\wamp\www\happy_Road\app\views\resetPassword.blade.php)
这是电子邮件链接
http://localhost/happy_Road/public/index.php/resetPassword/3a62d9105691fb0f09084ffdec7e87bcb9e734c0.
还有路线
Route::get('resetPassword/{token}', function($token)
{
return View::make('resetPassword')->with('token', $token);
});
那可能是什么问题!!
【问题讨论】: