| Install | |
|---|---|
composer require mildberry/jms-format-laravel |
JMS format service provider and facade for laravel 5.x framework
Install via composer
$ composer require mldberry/jms-format-laravel
Find the providers array key in config/app.php and register the JMSFormat Service Provider.
'providers' => array(
// ...
Mildberry\JMSFormat\JMSFormatServiceProvider::class,
)
After register service provider use facade JMSFormat
<?php
$content = JMSFormat::convert('html', 'jms', '<p>Test content</p>');
This library is under the MIT license. See the complete license in here