bshelling / bamboo
用于 Laravel 应用程序的简单 twig 模板包装包
v0.3.3
2023-10-18 17:32 UTC
Requires
- php: >=8.2
- twig/twig: ^3.7.1
README
用于 php 项目的简单 twig 模板包装包
示例
// Create templates directory at project root
#/ mkdir templates
// Create twig file in templates directory and add {{title}} template tag
#/ touch templates/index.twig
//Lavarel
use Bshelling\Bamboo\Stem\View;
class HomeController extends Controller {
public function index() {
return View::render('index.twig',['title' => 'Bamboo Title']);
}
}