laravel框架访问pages/show里报错
MethodNotAllowedHttpException in RouteCollection.php line 219:
我的路由配置
Route::resource('pages', 'PagesController',['except' => ['index','show']]);
需要配置错误页面
新建resources/views/errors/405.blade.php页面
即可解决
laravel框架访问pages/show里报错
MethodNotAllowedHttpException in RouteCollection.php line 219:
我的路由配置
Route::resource('pages', 'PagesController',['except' => ['index','show']]);
需要配置错误页面
新建resources/views/errors/405.blade.php页面
即可解决
已有 0 条评论