web 页面路由都是在routes/web.php 文件中定义
不同的方法对应不同的http请求
Route::get($uri, $callback);
Route::post($uri, $callback);
Route::put($uri, $callback);
Route::patch($uri, $callback);
Route::delete($uri, $callback);
Route::options($uri, $callback);
原文:http://www.cnblogs.com/yeyuansheng/p/7119018.html