检查请求是 GET 还是 POST
在我的控制器/操作中:
if(!empty($_POST))
{
if(Auth::attempt(Input::get('data')))
{
return Redirect::intended();
}
else
{
Session::flash('error_message','');
}
}
有没有一种方法可以检查请求是 还是 ?Laravel
POST
GET