PHP code example of torann / snazzy-twig
1. Go to this page and download the library: Download torann/snazzy-twig 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/ */
torann / snazzy-twig example snippets
namespace App\Providers;
use Torann\SnazzyTwig\TwigServiceProvider as ServiceProvider;
class TwigServiceProvider extends ServiceProvider
{
/**
* Twig view widgets.
*
* @var array
*/
protected $widgets = [
//
];
/**
* Get the current website.
*
* @return \Torann\SnazzyTwig\Contracts\WebsiteInterface
*/
protected function getWebsite()
{
return $this->app['website'];
}
}
php
'providers' => [
\App\Providers\TwigServiceProvider::class,
]
php
$app->register(\App\Providers\TwigServiceProvider::class);