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
It should support all of your standard PHP operators, including || (logical OR).
I have tested it myself and it works fine.
Additionally, I would recommend simply testing this yourself in future to confirm it works/doesn't work.