When trying to access Route parameters, using $request->route('id')
, in latest version of Lumen, I get an error.
lumen.ERROR: Symfony\Component\Debug\Exception\FatalThrowableError:
Call to a member function parameter() on array
It works fine in Laravel.
Lumen is so stripped down, that the Route resolves to a simple array, rather than a Route object.
This is a problem, since the
Request::route($key)
method assumes the Route will have aparameter
method.But if you call
Request::route(null)
, the complete Route array will be returned, looking something like this:Where
[2]
always seems to contain the Route parameters.I made a simple helper class to work with the Route parameters on Lumen. You can get, set and forget route parameters. This is works great if you need to manipulate them in your middleware.
Save in
app/Support/RouteParam.php
: https://gist.github.com/westphalen/c3cd187007e0448bcb7fca1de091e4dfAnd simply use it like this:
$id = RouteParam::get($request, 'id');
Blame
illuminate/http/Request.php
: