xetaio / xetaravel-ckeditor
A wrapper to use CKEditor with Laravel.
Installs: 1 320
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.4
- ckeditor/ckeditor: dev-full/4.6.x
- illuminate/support: ~5.0
README
Xetaravel CKEditor
This is a wrapper to use CKEditor with Laravel.
Installation
composer require xetaio/xetaravel-ckeditor
Import the CkeditorServiceProvider in your
config/app.php
:Xetaravel\Ckeditor\Providers\CkeditorServiceProvider::class
Publish the CKEditor to your public directory :
php artisan vendor:publish --tag=ckeditor
Usage
<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 update
Then, delete the folder
public/vendor/release
and run the artisan command again :php artisan vendor:publish --tag=ckeditor
Note : Do not put any custom configuration files in the
public/vendor/release
directory. Instead put them in thepublic/vendor
directory or somewhere else and attach them to theCKEDITOR
instance.