ром Макаров
ром Макаров

Reputation: 165

Laravel sidebar hide on custom page

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

Answers (1)

Alexey Mezenin
Alexey Mezenin

Reputation: 163778

You can use request()->is():

@if (!request()->is('forum*'))
    @widget('Partners::Partners')
@endif

Upvotes: 1

Related Questions