talesoft / tale-jade-laravel
A bridge to enable use of the Tale Jade template engine with Laravel
1.1
2016-06-04 19:17 UTC
Requires
- illuminate/support: >=5.0
- illuminate/view: >=5.0
- talesoft/tale-jade: ^1.4.4
Requires (Dev)
- phpunit/phpunit: >=4.0
This package is auto-updated.
Last update: 2024-10-10 07:49:06 UTC
README
This library provides the ability to use Jade-templates with the Laravel Framework
Usage
Download and install via composer
$ composer require "talesoft/tale-jade-laravel:*"
$ composer install
Add the service provider to your config/app.php
-file (Right below the other ones)
/* * Application Service Providers... */ App\Providers\AppServiceProvider::class, App\Providers\AuthServiceProvider::class, App\Providers\EventServiceProvider::class, App\Providers\RouteServiceProvider::class, [...] Tale\Jade\Bridge\Laravel\ServiceProvider::class,
You can now create <template-name>.jade
-files inside your resources/views
directory and use them directly.
All features work correctly.