Package Data | |
---|---|
Maintainer Username: | TorbenKoehn |
Maintainer Contact: | tk@talesoft.io (Torben Koehn) |
Package Create Date: | 2015-11-10 |
Package Last Update: | 2016-06-04 |
Home Page: | http://jade.talesoft.io |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-21 15:08:50 |
Package Statistics | |
---|---|
Total Downloads: | 753 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 5 |
Total Forks: | 0 |
Total Open Issues: | 2 |
This library provides the ability to use Jade-templates with the Laravel Framework
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.