facilinfo / laravel-ckeditor by facilinfo
forked from UniSharp/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).
68
1
3
Package Data
Maintainer Username: facilinfo
Package Create Date: 2016-01-19
Package Last Update: 2016-01-19
Home Page:
Language: JavaScript
License: GPL-2.0+
Last Refreshed: 2024-05-07 03:04:02
Package Statistics
Total Downloads: 68
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

CKEditor Package

Installation

Set up package

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

Add ServiceProvider

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

Unisharp\Ckeditor\ServiceProvider::class,

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