基础路由方式(get,post)Route::get('foo',function(){ return 'Hello World';});Route::post('foo',function(){ return 'Hello World';});