axxim / markdown-blade
There is no license information available for the latest version (dev-master) of this package.
dev-master
2014-09-24 02:26 UTC
Requires
- php: >=5.3.0
- dflydev/markdown: 1.0.*@dev
- illuminate/support: 4.*
This package is not auto-updated.
Last update: 2024-12-31 07:37:45 UTC
README
Based completely on Kindari/laravel-markdown#2
Installation
Add axxim/markdown-blade
to composer.json
.
"axxim/markdown-blade": dev-master"
Run composer update
. Now open up app/config/app.php
and add the service provider to your providers
array, after the ViewServiceProvider.
'providers' => array(
...
'Illuminate\View\ViewServiceProvider',
'Axxim\MarkdownBlade\MarkdownBladeServiceProvider',
...
)
Usage
Create a view file named foobar.md.blade.php then use it like normal:
return View::make('foobar');