With Laravel 5, many inbuilt components that were part of core framework has been removed and are been managed independently as Laravel Collective. So If you are having an old version web application...
1. If you have your parameter attached to the URL after the question mark like
http://www.yoursite.com/someRoute?key=value
Your route for this controller will look something like this
Route::ge...