Laravel 5 bug RouteCollection.php 73 line

/**
 * Add the given route to the arrays of routes.
 *
 * @param  \Illuminate\Routing\Route  $route
 * @return void
 */
protected function addToCollections($route)
{
    $domainAndUri = $route->domain().$route->getUri();

    foreach ($route->methods() as $method) {
        $this->routes[$method][$domainAndUri] = $route;
    }

    $this->allRoutes[$method.$domainAndUri] = $route;
}
已邀请:

要回复问题请先登录注册