blade
blade copied to clipboard
🔪 A standalone version of Laravel's Blade templating engine for use outside of Laravel.
When using Laravel, registering a global variable would be done via a [service provider](https://laravel.com/docs/master/views#passing-data-to-views), but I'm currently unsure on how to do this with your standalone version. I've got a...
@bobthecow/mustache supports the following: > $mustache_options = array('extension' => '.html'); I'd like to use `.html`, .`php`, `.whatever` for my filename extensions for this project. Thanks again.
I just updated from 1.1.0 to 1.2.1, and $view->blade() no longer works. In my middlware // this line actually is defined in the initialization portion of my app, and is...
Can i use this in wordpress? If yes, can you give me some examples how integrate to wordpress?
I need to be able to refresh the cache as we are having issues with old content being displayed in the browser after changes have been made and the page...
Hi, Could you please describe why we should do `echo $blade->make('homepage', ['name' => 'John Doe']);` instead of doing `return $blade->make('homepage', ['name' => 'John Doe']);`? Thanks
I'm looking a way to lint my blade templates. Check for trailing white spaces, correct indentation, unique ID for html elements. I found a tool that is close to this...
Is there any change to use sandalone-version of Blade with PHP 5.6.* versions? As it seems for now, it hardly requires php ^7.1.3 (in dependencies).
We are using this package (Thank you) on a php 5.4 server. Unfortunately we are unable to load it in composer because of the "illuminate/view": "^5.1" requirement. For PHP 5.4...
Sorry, this may be a newbie question, but, is there a way to use `compileString` here?