I was to understand that MVC templating was used as a means of locking down a view from using any substantial programming logic. Testing the Blade system for Laravel 4, I notice that I am still able to include PHP content into the view.
Can I disable PHP in a Blade template? Essentially turning the file into a .html file with some additional possibilities (eg, Blade looping and sections/includes).
If you need programming logic in your views you're probably doing something wrong. Try to do the logic in your controller and inject the variables into your views.
Blade templates compile to php, so you won't be able to eliminate php altogether.
There is something you can work around your project by creating your own compiler, or extending Blade's.
You will need to work your own solution out on how to handle rendering the parts in php that are used in your template, I would just render them as is, for example: - if someone forgot an <?php echo $example; ?>
that's what the engine would render.