Replies: 1 comment 1 reply
-
I've just stumbled over the same issue. I debugged this a bit and it seems the RouteDepdendencyResolverTrait is not resolving the request with the params provided. For me this fixed it: $response = app()->handle($request); // works
$response = Route::dispatch($request); // does not work |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We've got a weird case in our app where dispatching a route directly is useful.
However when it hits the controller of this route it's lost the parameters passed to the request. Is this intentional?
Beta Was this translation helpful? Give feedback.
All reactions