varmad / laravel-haml
HAML templating for Laravel
dev-master
2013-11-23 18:56 UTC
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
- mthaml/mthaml: dev-master
- twig/extensions: 1.0.*@dev
- twig/twig: 1.12.*@dev
This package is not auto-updated.
Last update: 2024-11-19 01:43:34 UTC
README
Begin by installing this package through Composer. Edit your project's composer.json
file to require varmad/laravel-haml
.
It might look something like:
"require": { "laravel/framework": "4.0.*", "varmad/laravel-haml": "dev-master", }
Next, update Composer from the Terminal:
composer update
Once this operation completes, add the service provider. Open app/config/app.php
, and add a new item to the providers array.
'Varmad\LaravelHaml\LaravelHamlServiceProvider'
Usage
Creating a view file
filename.haml.php(hello.haml.php)
Rendering form the controller
public function index() {
return View::make('hello');
}