bshelling/bamboo

用于 Laravel 应用程序的简单 twig 模板包装包

v0.3.3 2023-10-18 17:32 UTC

This package is auto-updated.

Last update: 2024-09-18 22:05:52 UTC


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']);
	}
}