How to highlight a link when that page is selected

<li class="{{ Request::path() === '/' ? 'bg-red-300' : ' ' }}"> <a href="/" ......

 

or 

 

<li class="{{ Request::is('about')? 'bg-red-300' : ' ' }}"> <a href="about" ......

Edit this note