Skip to content

Commit

Permalink
Wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bakerkretzmar committed Mar 20, 2024
1 parent 794f469 commit 27f6f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ziggy.php
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private function folioRoutes(): Collection
}

$matchedView = new MatchedView(realpath($route['path']), [], $route['mountPath']);
$mountPath = Arr::first($mountPaths, fn ($mountPath) => $mountPath->path === realpath($route['mountPath']));
$mountPath = Arr::first($mountPaths, fn ($mountPath) => realpath($mountPath->path) === realpath($route['mountPath']));
dump($matchedView);
dump($mountPath);

Expand Down

0 comments on commit 27f6f92

Please sign in to comment.