Well you should be able to highlight it, you could do something like this in your partial
<li class="{{( Request::segment('1') == 'something' ? 'active' : false )}}"><a href="{{ url('something')}}">Something</a></li>
Or you could write your own class where you can check if it's active and whatnot, but for simple menus I believe it's ok to do just like my example
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community