Is it possible in Laravel 4.0 -blade-view to do an if statment like so?
@if ($var1 === \'1\' OR $var2 === \'1\') //Do my stuff @endif
You can simply use and / or operators:
and
or
@if($a==1 and $b==2) @if($a==1 or $b==2)