maratib/just-blade

Just Blade standalone templating engine for use outside of Laravel.

dev-main 2025-08-21 20:46 UTC

This package is not auto-updated.

Last update: 2025-08-22 03:20:10 UTC


README

Laravel's Blade standalone

Blade templating engine for use outside of Laravel

composer require maratib/just-blade

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);

Docs

just-blade