2017 © Pedro Peláez
 

library laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

image

rofilde/laravel-ckeditor

JavaScript WYSIWYG web text editor (for laravel).

  • Tuesday, January 12, 2016
  • by rofilde.hasudungan
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2,180 Installations
  • JavaScript
  • 1 Dependents
  • 0 Suggesters
  • 262 Forks
  • 0 Open issues
  • 2 Versions
  • 8 % Grown

The README.md

CKEditor Package

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., (*1)

Rofilde\Ckeditor\ServiceProvider::class,

Usage

Default way (initiate by name or id) :, (*2)

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

Or if you want to initiate by jQuery selector :, (*3)

    <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., (*4)

The Versions

12/01 2016

dev-master

9999999-dev http://ckeditor.com

JavaScript WYSIWYG web text editor (for laravel).

  Sources   Download

GPL-2.0+ LGPL-2.1+ MPL-1.1+

laravel javascript html ckeditor text editor wysiwyg fckeditor richtext

12/01 2016

v1.0

1.0.0.0 http://ckeditor.com

JavaScript WYSIWYG web text editor (for laravel).

  Sources   Download

GPL-2.0+ LGPL-2.1+ MPL-1.1+

laravel javascript html ckeditor text editor wysiwyg fckeditor richtext