I want to receive a GET request like this:
people.php?name=Joe&age=24
For that, I have defined the following route:
Route::get('people.php?name={username}&age={id}', array(
'as' => 'people/username/age',
'uses' => 'ExtraController@xfunction',
));
But this doesn't seem to work.
How can I define this route?