It will add "active" class if the URL matches with "/coupon/all"
<ul class="list-group">
<a href="{{route('link')}}" class="list-group-item {{ Request::is('/coupons/all') ? 'active' : '' }}">Show all</a>
</ul>
Another method with using laravel if else
@if(Request::url() === 'your url')
//code
@endif
Top comments (0)