此软件包最新版本(3.0.0)没有可用的许可证信息。

将简单而强大的Laravel Blade模板引擎作为独立组件使用。

3.0.0 2023-08-03 16:17 UTC

This package is auto-updated.

Last update: 2024-09-03 18:54:53 UTC


README

安装

composer require tahaghafuri/blade

使用

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

您可以使用Laravel文档中描述的所有blade功能:[Laravel文档](https://laravel.net.cn/docs/master/blade)