There is no license information available for the latest version (4.0.0) of this package.

Use the simple and yet powerful Laravel Blade templating engine as a standalone component.

4.0.0 2024-12-08 18:22 UTC

This package is auto-updated.

Last update: 2024-12-08 18:22:35 UTC


README

Installation

composer require tahaghafuri/blade

Usage

<?php

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any our classes "manually". Feels great to relax.
|
*/

require __DIR__.'/vendor/autoload.php';

use TAG\Blade\Blade;
use Illuminate\Events\Dispatcher;

$views = __DIR__ . '/views';
$cache = __DIR__ . '/cache';

$blade = new Blade($views, $cache, new Dispatcher);
echo $blade->view()->make('hello')->render();