dimanche 21 août 2016

Laravel 4 check if current path in array do somthing

I am trying to add banner on all the pages except the home page

I try this

@if(Request::path() !== array('/', 'home'))
    <div class="bannerImage">{{ HTML::image('images/fullimage3.jpg') }}</div>
@endif 

and this

@if(Request::path() !== '/' or 'home')
        <div class="bannerImage">{{ HTML::image('images/fullimage3.jpg') }}</div>
    @endif

how can I do this?

thanks

Aucun commentaire:

Enregistrer un commentaire