Dingo\Api\Console\Command\Routes::getRoutes PHP Method

getRoutes() protected method

Compile the routes into a displayable format.
protected getRoutes ( ) : array
return array
    protected function getRoutes()
    {
        $routes = [];
        foreach ($this->router->getRoutes() as $collection) {
            foreach ($collection->getRoutes() as $route) {
                $routes[] = $this->filterRoute(['host' => $route->domain(), 'method' => implode('|', $route->methods()), 'uri' => $route->uri(), 'name' => $route->getName(), 'action' => $route->getActionName(), 'protected' => $route->isProtected() ? 'Yes' : 'No', 'versions' => implode(', ', $route->versions()), 'scopes' => implode(', ', $route->scopes()), 'rate' => $this->routeRateLimit($route)]);
            }
        }
        if ($sort = $this->option('sort')) {
            $routes = Arr::sort($routes, function ($value) use($sort) {
                return $value[$sort];
            });
        }
        if ($this->option('reverse')) {
            $routes = array_reverse($routes);
        }
        if ($this->option('short')) {
            $this->headers = ['Method', 'URI', 'Name', 'Version(s)'];
            $routes = array_map(function ($item) {
                return array_only($item, ['method', 'uri', 'name', 'versions']);
            }, $routes);
        }
        return array_filter(array_unique($routes, SORT_REGULAR));
    }