Route::get('apples/{apple}',function($apple){
return $apple;
]);
在线输入网址:local.laravel.com/apples/传递内容
多个参数的传递
Route::get('apples/{apple}/comments/{comment}',function($apple,$comment){
return $apple." ".$comment;
});
在线输入网址:http://local.laravel.com/apples/123/comments/788sss