diff --git a/framework/core/src/Http/RouteCollection.php b/framework/core/src/Http/RouteCollection.php index 500ac8d58..795f72ef8 100644 --- a/framework/core/src/Http/RouteCollection.php +++ b/framework/core/src/Http/RouteCollection.php @@ -90,11 +90,8 @@ class RouteCollection public function getPath($name, array $parameters = []) { $parts = $this->reverse[$name][0]; - array_walk($parts, [$this, 'fixPathPart'], $parameters); - $path = implode('', $parts); - - $path = '/' . ltrim($path, '/'); + $path = '/' . ltrim(implode('', $parts), '/'); return $path; } }