Download the PHP package addons/smarty without Composer
On this page you can find all versions of the php package addons/smarty. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download addons/smarty
More information about addons/smarty
Files in addons/smarty
Package smarty
Short Description This package lets you run Smarty4 on Laravel elegantly.
License MIT
Homepage https://www.load-page.com/
Informations about the package smarty
Smarty
This package lets you run Smarty3 on Laravel5 elegantly.
Installation
Update your packages with or install with .
Usage
To use the Smarty Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this.
Find the providers
key in config/app.php
and register the Smarty Service Provider.
Then publish the config file with php artisan vendor:publish
. This will add the file config/smarty.php
. This config file is the primary way you interact with Smarty.
Then simply reference templates using the normal dot syntax of Laravel.
For example to load smarty template views/blog/post.tpl
, you would use view('blog.post')
.
In Smarty {include}
or {extends}
tags, you should continue to use the full directory syntax, e.g. {extends file="blog/post.tpl"}
.
All versions of smarty with dependencies
illuminate/support Version >=8.0
illuminate/cache Version >=8.0
illuminate/config Version >=8.0
smarty/smarty Version 4.*@stable