Skip to content

Use the simple and yet powerful Laravel Blade templating engine as a standalone component.

Notifications You must be signed in to change notification settings

tahaghafuri/blade

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Use the simple and yet powerful Laravel Blade templating engine as a standalone component.

Topics

Resources

Stars

Watchers

Forks

Languages

  • PHP 100.0%