I'm trying to
Redirect::route('some_route');
I'm getting this error
throw new MethodNotAllowedHttpException($others);
Can anyone help me?
I'm trying to
Redirect::route('some_route');
I'm getting this error
throw new MethodNotAllowedHttpException($others);
Can anyone help me?
Redirect::route()
sends GET request. You must have POST or some method set as the handler. Please change the route to handle GET request and you will be fine.