5.0.0 - 普通 - 未处理
php think route:list 输出的是全部的路由 但是定义的资源路由 使用了except 排除 但是还是会输出
Route::resource('blog', 'index/Blog', ['except' => ['create', 'update']]);
Route::resource('blog', 'index/Blog')->except(['create','update']);
使用 ->except(['create','update']); 定义的排除还是会存在