wysiwyg/ckeditor

There is no license information available for the latest version (dev-master) of this package.

Library for generate wysiwyg in PHP

Installs: 101

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 3

Language:JavaScript

dev-master 2013-08-15 18:40 UTC

This package is not auto-updated.

Last update: 2025-06-16 18:24:33 UTC


README

Use the config:publish artisan command

php artisan config:publish wysiwyg/ckeditor

And the asset:publish artisan command to pubish the assets

php artisan asset:publish wysiwyg\ckeditor

When this command is executed, the configuration file will be copied to app/config/packages/vendor/package where they can be safely modified.

include in app/config/app.php in array of Autoloaded Service Providers

'Wysiwyg\Ckeditor\Providers\CkeditorServiceProvider'

To test if is OK, you should create a route:

Route::get('/ck', function(){	
  echo CKEditor::editor('textarea_name','<h1>Teste</h1><p><i>Teste</i></p>');
});