Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javedLive/c8e415231284e2c46e8653c0d34eb99f to your computer and use it in GitHub Desktop.
Save javedLive/c8e415231284e2c46e8653c0d34eb99f to your computer and use it in GitHub Desktop.
Add active class to current link in laravel 5
<li class="dropdown nav-border2 {{ Request::segment(1) === 'free-products' ? 'active' : '' }}">
Another option where dynamic url parameter is there.
@foreach($categories as $row)
<li class="dropdown {{ Request::is('categories/'.$row->category_slug) ? 'active' : '' }}">
@endforeach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment