LaravelPackages.net
Acme Inc.
Toggle sidebar
philo/laravel-blade

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

679.019
355
v3.1
About philo/laravel-blade

philo/laravel-blade is a Laravel package for use the simple and yet powerful laravel blade templating engine as a standalone component.. It currently has 355 GitHub stars and 679.019 downloads on Packagist (latest version v3.1). Install it with composer require philo/laravel-blade. Discover more Laravel packages by philo or browse all Laravel packages to compare alternatives.

Last updated

Installation (Blade Laravel 5.1)

The package can be installed via Composer by requiring the "philo/laravel-blade": "3.*" package in your project's composer.json.

{
	"require": {
	    "philo/laravel-blade": "3.*"
	}
}

Installation (Blade Laravel 4)

The package can be installed via Composer by requiring the "philo/laravel-blade": "2.*" package in your project's composer.json.

{
	"require": {
	    "philo/laravel-blade": "2.*"
	}
}

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 'vendor/autoload.php';

use Philo\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 5.1 documentation: https://laravel.com/docs/5.1/blade

Star History Chart