If Else Condition For URL In Laravel
webfuelcode

webfuelcode @webfuelcode

About: Like to learn something new. Coding is fun.

Joined:
Jul 21, 2020

If Else Condition For URL In Laravel

Publish Date: May 28 '21
5 0

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>
Enter fullscreen mode Exit fullscreen mode

Another method with using laravel if else

@if(Request::url() === 'your url')
//code
@endif
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment