tahaghafuri / blade
There is no license information available for the latest version (3.0.0) of this package.
Use the simple and yet powerful Laravel Blade templating engine as a standalone component.
3.0.0
2023-08-03 16:17 UTC
Requires
This package is auto-updated.
Last update: 2024-11-03 19:12:41 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; $views = __DIR__ . '/views'; $cache = __DIR__ . '/cache'; $blade = new Blade($views, $cache); echo $blade->view()->make('hello')->render();
You can use all blade features as described in the Laravel Documentation: https://laravel.com/docs/master/blade