X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/tightenco/ziggy/src
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
tightenco
/
ziggy
/
src
/
📁
..
📄
BladeRouteGenerator.php
(2.49 KB)
📄
CommandRouteGenerator.php
(2.67 KB)
📄
Macro.php
(1.23 KB)
📄
RoutePayload.php
(3.39 KB)
📄
ZiggyServiceProvider.php
(1.21 KB)
📁
js
Editing: RoutePayload.php
<?php namespace Tightenco\Ziggy; use Illuminate\Routing\Router; use Illuminate\Support\Arr; use Illuminate\Support\Str; class RoutePayload { protected $routes; public function __construct(Router $router) { $this->router = $router; $this->routes = $this->nameKeyedRoutes(); } public static function compile(Router $router, $group = false) { return (new static($router))->applyFilters($group); } public function applyFilters($group) { if ($group) { return $this->group($group); } // return unfiltered routes if user set both config options. if (config()->has('ziggy.blacklist') && config()->has('ziggy.whitelist')) { return $this->routes; } if (config()->has('ziggy.blacklist')) { return $this->blacklist(); } if (config()->has('ziggy.whitelist')) { return $this->whitelist(); } return $this->routes; } public function group($group) { if(is_array($group)) { $filters = []; foreach($group as $groupName) { $filters = array_merge($filters, config("ziggy.groups.{$groupName}")); } return is_array($filters)? $this->filter($filters, true) : $this->routes; } else if(config()->has("ziggy.groups.{$group}")) { return $this->filter(config("ziggy.groups.{$group}"), true); } return $this->routes; } public function blacklist() { return $this->filter(config('ziggy.blacklist'), false); } public function whitelist() { return $this->filter(config('ziggy.whitelist'), true); } public function filter($filters = [], $include = true) { return $this->routes->filter(function ($route, $name) use ($filters, $include) { foreach ($filters as $filter) { if (Str::is($filter, $name)) { return $include; } } return ! $include; }); } protected function nameKeyedRoutes() { return collect($this->router->getRoutes()->getRoutesByName()) ->map(function ($route) { if ($this->isListedAs($route, 'blacklist')) { $this->appendRouteToList($route->getName(), 'blacklist'); } elseif ($this->isListedAs($route, 'whitelist')) { $this->appendRouteToList($route->getName(), 'whitelist'); } return collect($route)->only(['uri', 'methods']) ->put('domain', $route->domain()) ->when($middleware = config('ziggy.middleware'), function ($collection) use ($middleware, $route) { if (is_array($middleware)) { return $collection->put('middleware', collect($route->middleware())->intersect($middleware)->values()); } return $collection->put('middleware', $route->middleware()); }); }); } protected function appendRouteToList($name, $list) { config()->push("ziggy.{$list}", $name); } protected function isListedAs($route, $list) { return (isset($route->listedAs) && $route->listedAs === $list) || Arr::get($route->getAction(), 'listed_as', null) === $list; } }
Upload File
Create Folder