UniSharp / laravel-ckeditor by FreedomKnight
forked from ckeditor/ckeditor4-releases

JavaScript WYSIWYG web text editor (for laravel).
717,699
381
18
Package Data
Maintainer Username: FreedomKnight
Package Create Date: 2015-07-15
Package Last Update: 2020-10-17
Home Page:
Language: JavaScript
License: GPL-2.0+
Last Refreshed: 2024-04-17 15:10:42
Package Statistics
Total Downloads: 717,699
Monthly Downloads: 2,178
Daily Downloads: 121
Total Stars: 381
Total Watchers: 18
Total Forks: 144
Total Open Issues: 21

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 unisharp/laravel-ckeditor

Add ServiceProvider

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

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.