Just-Blade
Now you can use blade templating easily in your plain php projects.
Quick start
Section titled “Quick start”Install the follow package and you are good to go:-
composer require webpup/just-blade
Howto use it
Section titled “Howto use it”How to use it in your plain php projects
$views = THEME_PATH . '/views';$cache = THEME_PATH . '/storage/cache';
$blade = new \Just\Blade($views, $cache);$blade->render($template, $data);