I\'m trying to get a url parameter from a view file.
I have this url:
http://locahost:8000/example?a=10
and a view file na
This works well:
{{ app('request')->input('a') }}
Where a is the url parameter.
a
See more here: http://blog.netgloo.com/2015/07/17/lumen-getting-current-url-parameter-within-a-blade-view/