PHP code example of helsingborg-stad / render-blade-view
1. Go to this page and download the library: Download helsingborg-stad/render-blade-view 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/ */
helsingborg-stad / render-blade-view example snippets
class BladeEngine {
// The bladeEngine to be passed to BladeView::create must have a render function following this signature.
public function render(string $view, array $data):string;
}
$bladeEngine = new BladeEngine();
$view = 'foo';
$viewData = ['foo' => 'bar'];
$bladeView = BladeView::create($bladeEngine);
$bladeView->render($view, $viewData);