Laravel提示The GET method is not supported for this route. Supported methods: POST.错误的解决办法

解决方法:将路由改为any()

Route::any('index',[AdminIndexController::class,'index']);

  

原文地址:https://www.cnblogs.com/heyongzhen/p/13864058.html