I have a menu partial, that includes a input search bar. But i don\'t want the search bar to be visibel on all pages, only for two specific uri´s. Is there a way to remove that
Use is() method:
is()
@if (request()->is($url)) @include('partials._search') @endif
Or if you know route name:
@if (request()->route()->getName() === $routeName) @include('partials._search') @endif