Reputation: 165
I working with laravel, searched on internet but nothing found. I got simple sidebar widget: @widget('Partners::Partners')
How can i hide on custom page? Like example: /forums? Thanks for answers!
Upvotes: 2
Views: 479
Reputation: 163778
You can use request()->is()
:
@if (!request()->is('forum*'))
@widget('Partners::Partners')
@endif
Upvotes: 1