Yo guys, just a little Laravel quick-tip here today.
If you want to get variables from the query string in Laravel, you can get it with the query()-method from the Input class.
The signature for the method is the following:
string Input::query(string $key, mixed $default_value = null);