LaravelPackages.net
Acme Inc.
Toggle sidebar
jezielmartins/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

96
0
4.6.2
About jezielmartins/laravel-ckeditor

jezielmartins/laravel-ckeditor is a Laravel package for javascript wysiwyg web text editor (for laravel).. It currently has 0 GitHub stars and 96 downloads on Packagist (latest version 4.6.2). Install it with composer require jezielmartins/laravel-ckeditor. Discover more Laravel packages by jezielmartins or browse all Laravel packages to compare alternatives.

Last updated

CKEditor Package

p.s. Instead of using this package, I recommend just follow the official CKEditor installation instructions with package managers

Installation

Set up package

composer require jezielmartins/laravel-ckeditor

Add ServiceProvider

Edit config/app.php, add the following file to Application Service Providers section.

jezielmartins\Ckeditor\ServiceProvider::class,

Publish the resources

php artisan vendor:publish --tag=ckeditor

Usage

Default way (initiate by name or id) :

    <script src="https://raw.githubusercontent.com/jezielmartins/laravel-ckeditor/refs/heads/main/vendor/jezielmartins/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/jezielmartins/laravel-ckeditor/refs/heads/main/vendor/jezielmartins/laravel-ckeditor/ckeditor.js"></script>
    <script src="https://raw.githubusercontent.com/jezielmartins/laravel-ckeditor/refs/heads/main/vendor/jezielmartins/laravel-ckeditor/adapters/jquery.js"></script>
    <script>
        $('textarea').ckeditor();
        // $('.textarea').ckeditor(); // if class is prefered.
    </script>

File Uploader Integration

Instead of using KCFinder, we recommend laravel-filemanager for the file uploader integration for better laravel user access control and specific per user folders.

Comments