cljamal/la-ckeditor4

CKEditor 4 Full For Laravel-admin

Installs: 1 195

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:HTML

pkg:composer/cljamal/la-ckeditor4

1.0.3 2020-09-28 09:09 UTC

This package is auto-updated.

Last update: 2025-09-28 20:18:43 UTC


README

Forked from https://github.com/Ghost-die/ckeditor - CKEditor 5 for Laravel-admin(https://www.laravel-admin.org)

Installation

composer require cljamal/la-ckeditor4

Then

php artisan vendor:publish --tag=cljamal-ckeditor

Configuration

In the extensions section of the config/admin.php file, add some configuration that belongs to this extension.

    'ckeditor' => [ 
        //Set to false if you want to disable this extension
        'enable' => true,
    
        // Editor configuration
        'config' => [    
            'language'=>'en', 
        ]
    ]

Usage

Form::extend('editor', CLJAMAL\CKEditor4\Editor::class);