Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.1 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.1 KB

Allows you to use PHPTAL seamlessly in Laravel

Installation

Add niterain\PhpTalView as a requirement to composer.json:

composer require niterain/php-tal-view:2.0.1.x-dev

Update your packages with composer update or install with composer install.

Once Composer has installed or updated your packages you need to register PhpTalView with Laravel. Open up app/config/app.php and find the providers key towards the bottom and add:

'Niterain\PhpTalView\PhpTalViewServiceProvider',

Configuration

Currently PhpTalView is set by default to HTML5, however, you can change this setting in its config.php file, XHTML, or XML.

Usage

You call the PhpTalView template like you would any other view:

View::make('hello', array(...))

Filters

PHPTAL also has a nice feature which you can use called filters, for example I have one that bust the cache for images, js, css, this is configurable via the config file.

'preFilters' => array(
    'bustCache',
    'minimizeJs',
    'adderJs'
)