Fedeisas\LaravelJsRoutes\Generators\RoutesJavascriptGenerator::getRouteInformation PHP Метод

getRouteInformation() защищенный Метод

Get the route information for a given route.
protected getRouteInformation ( Illuminate\Routing\Route $route ) : array
$route Illuminate\Routing\Route
Результат array
    protected function getRouteInformation(Route $route)
    {
        if ($route->getName()) {
            return ['uri' => $route->uri(), 'name' => $route->getName(), 'before' => $this->getBeforeFilters($route)];
        }
        return null;
    }