| Package Data | |
|---|---|
| Maintainer Username: | Xety |
| Maintainer Contact: | emeric@xeta.io (Xety) |
| Package Create Date: | 2017-04-30 |
| Package Last Update: | 2017-04-30 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-03 15:20:43 |
| Package Statistics | |
|---|---|
| Total Downloads: | 1,321 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
This is a wrapper to use CKEditor with Laravel.
Installation
composer require xetaio/xetaravel-ckeditorImport the CkeditorServiceProvider in your
config/app.php:Xetaravel\Ckeditor\Providers\CkeditorServiceProvider::classPublish the CKEditor to your public directory :
php artisan vendor:publish --tag=ckeditorUsage
<script src="/vendor/ckeditor/release/ckeditor.js"></script> <script> CKEDITOR.replace('name-go-here'); </script>Update
To update CKEditor to a new version, first run :
composer updateThen, delete the folder
public/vendor/releaseand run the artisan command again :php artisan vendor:publish --tag=ckeditorNote : Do not put any custom configuration files in the
public/vendor/releasedirectory. Instead put them in thepublic/vendordirectory or somewhere else and attach them to theCKEDITORinstance.