我在试着
Redirect::route('some_route');
我得到了这个错误
throw new MethodNotAllowedHttpException($others);
有谁可以帮我?
发布于 2015-03-19 10:15:23
Redirect::route()发送GET请求。必须将POST或某些方法设置为处理程序。请更改路径以处理GET请求,您会没事的。
Redirect::route()
https://stackoverflow.com/questions/29140577
相似问题