PHP code example of snicco / blade-bridge
1. Go to this page and download the library: Download snicco/blade-bridge library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
snicco / blade-bridge example snippets
use Snicco\Bridge\Blade\BladeStandalone;
use Snicco\Bridge\Blade\BladeViewFactory;
use Snicco\Component\Templating\Context\ViewContextResolver;
use Snicco\Component\Templating\TemplateEngine;
/**
* @var ViewContextResolver $view_context_resolver
*/
$view_context_resolver = /* Check the documentation of snicco/templating */
$blade = new BladeStandalone(
__DIR__.'/cache/blade', // directory path for the compiled templates
[
__DIR__.'/views',
__DIR__.'/templates',
], // An array of directories where views are located
$view_context_resolver
);
$blade->boostrap();
/**
* @var BladeViewFactory
*/
$blade_view_factory = $blade->getBladeViewFactory();
$template_engine = new TemplateEngine(
$blade_view_factory
);