Attribute [gatherRouteMiddlewares] does not exist
\vendor\dingo\api\src\Routing\Adapter\Laravel.php <?php public function gatherRouteMiddlewares($route){ return $this->router->gatherRouteMiddlewares($route); }
这里方法名错了
改成:
public function gatherRouteMiddlewares($route) { return $this->router->gatherRouteMiddleware($route); }
???[黑人问号脸]