-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
I am using lumen framework and I noticed multiple word named routes do not work with this package.
<a href="{{route('article.create')}}" class="{{active(['article.create'], 'active')}}">
New Article
</a>
$router->get('/article/create', [
'as' => 'article.create',
'uses' => 'ArticleController@create'
]);
When I invoke is_active('article.create') in ArticleController@create it returns false. If I change the route to just "/article" and change the name from "article.create" to "article", it works.
The same problem occurs on "/".
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels