How do I get all query parameters from the url?
So let's say the url is:
http://website.com?page=1&?forum=test
I need this part in my controller:
http://website.com?page=1&?forum=test
the query parameters can be different with every request. So Input::get('page'); or Input::get('forum');does not help because I
don't know what to can expect.
Already looked at the docs but I can't find it.
Thanks