Skip to content

cljamal/la-ckeditor4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CKEditor 4 Full For Laravel-admin

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);