Tuesday, April 19, 2022

[FIXED] How can I pass multiple routes as arguments to the Route::is() method in Laravel 8?

Issue

I am working on a Laravel 8 application. I need to use Route::is for multiple routes, like this

@if(Route::is('user') or Route::is('register') or Route::is('login'))
    Do something
@endif

The goal

I want to shorten this syntax so I tried to pass the routes as arguments to the Route::is() method:

@if(Route::is('user,register,login'))
    Do something
@endif

The problem

The above method does not work.

Is there an alternative, working way to pass multiple routes as arguments?

Solution

You can do that as shown below

@if(request()->routeIs(['user','register','login']))
   Do something
@endif


Answered By - Donnicias
Answer Checked By - Senaida (PHPFixing Volunteer)

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.