使用 Laravel 4。
我有一个过滤器:
Route::filter('csrf', function()
{
if (Request::forged()) return Response::error('500');
});
在控制器中,我为 POST 请求调用过滤器:
public function __construct()
{
$this->beforeFilter('csrf', array('on' => 'post'));
}
但是当我发布时出现此错误:
Call to undefined method Illuminate\Http\Request::forged()
谁能给我一些关于出了什么问题的见解?