Commit 154db769 by 庄欣

Update ApiList

parent b46dd8fb
......@@ -120,4 +120,10 @@ Route::group(["prefix" => "category", 'namespace' => Provider::getNamespace("cat
Route::get ("/pretty" , "Category@pretty");
//某分类下的子分类
Route::get ("/{id}/child" , "Category@child")->where(['id' => '\d+']);
});
//城市
Route::group(["prefix" => "city", 'namespace' => Provider::getNamespace("city")],function() {
//列表
Route::get("/", "City@index");
});
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment