JavaScript WYSIWYG web text editor (for laravel).
facilinfo/laravel-ckeditor is a Laravel package for javascript wysiwyg web text editor (for laravel)..
It currently has 1 GitHub stars and 75 downloads on Packagist (latest version 4.5.8).
Install it with composer require facilinfo/laravel-ckeditor.
Discover more Laravel packages by facilinfo
or browse all Laravel packages to compare alternatives.
Last updated
composer require unisharp/laravel-ckeditor
php artisan vendor:publish --tag=ckeditor
Edit config/app.php, add the following file to Application Service Providers section.
Unisharp\Ckeditor\ServiceProvider::class,
Default way (initiate by name or id) :
<script src="https://raw.githubusercontent.com/facilinfo/laravel-ckeditor/refs/heads/main/vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
Or if you want to initiate by jQuery selector :
<script src="https://raw.githubusercontent.com/facilinfo/laravel-ckeditor/refs/heads/main/vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
<script src="https://raw.githubusercontent.com/facilinfo/laravel-ckeditor/refs/heads/main/vendor/unisharp/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.