bshelling/bamboo

Simple twig templating package for Laravel Applications

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

This package is auto-updated.

Last update: 2024-04-18 21:08:11 UTC


README

Simple twig templating package for php projects

Example


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