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 fine for me:
{{ app('request')->input('a') }}
Ex: to get pagination param on blade view:
{{ app('request')->input('page') }}