Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
The PUT method is not supported for this route. Supported methods: GET, HEAD, PATCH.
其实很简单就是配置路由的时候设置的是post,但是访问时采用的是put方式。
解决办法1:将路由改为any或者put
Route::any('index', 'IndexController@index);
解决方法2:将请求方式改为post,比如在表单中设置
method="put"