rofilde/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

Installs: 4 465

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 408

Language:JavaScript

v1.0 2016-01-12 06:30 UTC

This package is not auto-updated.

Last update: 2024-04-23 17:23:53 UTC


README

Installation

Set up package

composer require rofilde/laravel-ckeditor
php artisan vendor:publish --tag=ckeditor

Add ServiceProvider

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

Rofilde\Ckeditor\ServiceProvider::class,

Usage

Default way (initiate by name or id) :

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

Or if you want to initiate by jQuery selector :

    <script src="/rofil-ckeditor/laravel-ckeditor/ckeditor.js"></script>
    <script src="/rofil-ckeditor/laravel-ckeditor/adapters/jquery.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.