wysiwyg / ckeditor
Library for generate wysiwyg in PHP
Installs: 101
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 3
Language:JavaScript
Requires
- php: >=5.3.0
- illuminate/config: >=1.0.0
- illuminate/support: 4.0.x
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>'); });