TAL (Template Attribute Language) template engine for Laravel
iamproperty/laravel-tal is a Laravel package for tal (template attribute language) template engine for laravel.
It currently has 1 GitHub stars and 4 downloads on Packagist (latest version 0.1.0).
Install it with composer require iamproperty/laravel-tal.
Discover more Laravel packages by iamproperty
or browse all Laravel packages to compare alternatives.
Last updated
TAL (Template Attribute Language) template engine for Laravel and Lumen
Require this package with Composer
$ composer require iamproperty/laravel-tal
If you don't use package auto-discovery you can add the service provider to your config.app.php.
'providers' => [
IAMProperty\LaravelTal\TalServiceProvider::class,
]
Require this package with Composer
$ composer require iamproperty/laravel-tal
Register the service provider in your bootstrap/app.php
$app->register(IAMProperty\LaravelTal\TalServiceProvider::class);
If you need to configure laravel-tal you can change setting in the configuration file.
Publish the config file
$ php artisan vendor:publish --provider "IAMProperty\LaravelTal\TalServiceProvider"
Copy the vendor/iamproperty/laravel-tal/config/tal.php file to your local config directory.
$app->configure('tal');