techguy/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).
13,808 10
Install
composer require techguy/laravel-ckeditor
Latest Version:v1.5.5
License:GPL-2.0+
Last Updated:Sep 14, 2022
Links: GitHub  ·  Packagist
Maintainer: dev-techguy

CKEditor Package

Note

This is NOT the official CKEDITOR package.

CKEDITOR officially has its own composer package since 2014. Instead of using this package, we recommend you follow the official CKEditor installation instructions with package managers

Installation

Set up package

composer require techguy/laravel-ckeditor

Add ServiceProvider

Edit config/app.php, add the following file to Application Service Providers section. Use this for laravel 5.5 and below

Unisharp\Ckeditor\ServiceProvider::class,

Publish the resources

php artisan vendor:publish --tag=ckeditor

Usage

Default way (initiate by name or id) :

    <script; src="/vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
    <script>
        CKEDITOR.replace( 'article-ckeditor' );
    </script>

Or if you want to initiate by jQuery selector :

    <script; src="/vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
    <script; src="/vendor/unisharp/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.

Related Packages

facilinfo/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

75 1
unisharp/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

771,134 373
rofilde/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

4,857 0
midium/laravel-ckeditor

JavaScript WYSIWYG web text editor (for Laravel 5).

996 1
jezielmartins/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

96 0