Package Data | |
---|---|
Maintainer Username: | jezielmartins |
Package Create Date: | 2017-07-08 |
Package Last Update: | 2017-07-09 |
Home Page: | |
Language: | JavaScript |
License: | GPL-2.0+ |
Last Refreshed: | 2025-01-14 15:03:05 |
Package Statistics | |
---|---|
Total Downloads: | 94 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
p.s. Instead of using this package, I recommend just follow the official CKEditor installation instructions with package managers
composer require jezielmartins/laravel-ckeditor
Edit config/app.php, add the following file to Application Service Providers
section.
jezielmartins\Ckeditor\ServiceProvider::class,
php artisan vendor:publish --tag=ckeditor
Default way (initiate by name or id) :
<script src="/vendor/jezielmartins/laravel-ckeditor/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
Or if you want to initiate by jQuery selector :
<script src="/vendor/jezielmartins/laravel-ckeditor/ckeditor.js"></script>
<script src="/vendor/jezielmartins/laravel-ckeditor/adapters/jquery.js"></script>
<script>
$('textarea').ckeditor();
// $('.textarea').ckeditor(); // if class is prefered.
</script>
Instead of using KCFinder, we recommend laravel-filemanager for the file uploader integration for better laravel user access control and specific per user folders.