tahaghafuri / blade
Use the simple and yet powerful Laravel Blade templating engine as a standalone component.
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 94
Open Issues: 0
pkg:composer/tahaghafuri/blade
Requires
This package is auto-updated.
Last update: 2025-10-08 19:56:44 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();