Laravel Queries Strings
问题 Does anyone know if it's possible to make use of URL query's within Laravel. Example I have the following route: Route::get('/text', 'TextController@index'); And the text on that page is based on the following url query: http://example.com/text?color={COLOR} How would I approach this within Laravel? 回答1: Yes, it is possible. Try this: Route::get('test', function(){ return "<h1>" . Input::get("color") . "</h1>"; }); and call it by going to http://example.com/test?color=red . You can, of course