adimancifi/blade

The standalone version of Laravel's Blade templating engine for use outside of Laravel.

1.0.0 2022-03-07 15:42 UTC

This package is auto-updated.

Last update: 2024-04-07 20:38:54 UTC


README

Install

composer require adimancifi/blade

Usage

include "vendor/autoload.php";

$blade = new \Adimancifi\Blade\Blade(realpath(__DIR__), "cache");
echo $blade->render('view', ['nama' => 'adiman']);