active
active copied to clipboard
Laravel helper for recognising the current route, controller and action.
I have a marketplace url with a slug to define the category, how does one pass the parameter into the active helper? E.g. `marketplaces/cars` `active('marketplace.show', $slug')`
I have next menu ``` All @foreach(App\Category::all() as $category) {{$category->name}} @endforeach ``` This is a munu of categories. Route is next (Note - In category menu I do not use...
I am using lumen framework and I noticed multiple word named routes do not work with this package. ``` New Article ``` ``` $router->get('/article/create', [ 'as' => 'article.create', 'uses' =>...