mohamednagy / laravel-ckeditor

This is a fork from the official CKEditor branch (standard edition), wrap it to laravel package.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 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.

About

This is a fork from the official CKEditor branch (standard edition), wrap it to laravel package.

License:Other


Languages

Language:JavaScript 60.4%Language:CSS 37.9%Language:HTML 1.4%Language:PHP 0.4%