Does anyone know if it\'s possible to make use of URL query\'s within Laravel.
Example
I have the following route:
Route::ge
Yes, it is possible. Try this:
Route::get('test', function(){
return "" . Input::get("color") . "
";
});
and call it by going to http://example.com/test?color=red.
You can, of course, extend it with additional arguments to your heart's content. Try this:
Route::get('test', function(){
return "" . print_r(Input::all(), true) . "
";
});
and add some more arguments:
http://example.com/?color=red&time=now&greeting=bonjour`
This will give you
Array
(
[color] => red
[time] => now
[greeting] => bonjour
)