Skip to content

This is a fork from the official CKEditor branch, adding laravel package support.

License

Notifications You must be signed in to change notification settings

midium/laravel-ckeditor

 
 

Repository files navigation

CKEditor Package

Installation

Set up package

composer require midium/laravel-ckeditor:dev-master

Add ServiceProvider

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

Midium\Ckeditor\ServiceProvider::class,

Publish the package's config and assets

php artisan vendor:publish --tag=ckedit

Usage

Default way (initiate by name or id) :

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

Or if you want to initiate by jQuery selector :

    <script src="/vendor/midium/laravel-ckeditor/adapters/jquery.js"></script>
    <script src="/vendor/midium/laravel-ckeditor/ckeditor.js"></script>
    <script>
        $('textarea').ckeditor();
        // $('.textarea').ckeditor(); // if class is prefered.
    </script>

File Uplader 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, adding laravel package support.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 62.6%
  • CSS 35.4%
  • HTML 1.6%
  • PHP 0.4%