I’d like to include an active class
in a link when I’m on the following path as copied from my browser:
http://127.0.0.1:8000/products?_token=vcLckxysIra4DARsea0vsfqKQ0LgxzlhLaq4g2oD&look=official
In my blade I have the following but it’s not working when I’m not on that path.
<li class="{{ Request::path() === 'products?look=official' ? 'active' : '' }}">Official Khaki Pants & Blouses</li>
What I’m I missing?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You can use ->input()
or ->query()
from Request
facade or request()
helper.
request()->query('look');
<li class="{{ request()->query('look') == 'official' ? 'active' : '' }}"> Official Khaki Pants & Blouses </li>
Method 2
<li class="{{ request()->input('look') == 'official' ? 'active' : '' }}">Official Khaki Pants & Blouses</li>
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0