We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b5853 commit d22c823Copy full SHA for d22c823
src/views/partials/menu_item.blade.php
@@ -20,7 +20,7 @@
20
@elseif (strpos($key, $pagePrefix) === 0)
21
<a href="{{route('admin_page', array(substr($key, strlen($pagePrefix)), false))}}">{{$item}}</a>
22
@elseif (strpos($key, $routePrefix) === 0)
23
- <a href="{{route(substr($key, strlen($routePrefix)))}}">{{$item}}</a>
+ <a href="{{route(substr($key, strlen($routePrefix)), [], false)}}">{{$item}}</a>
24
@else
25
<a href="{{route('admin_index', array($key), false)}}">{{$item}}</a>
26
@endif
0 commit comments