cljamal/la-ckeditor4

CKEditor 4 Full For Laravel-admin

1.0.3 2020-09-28 09:09 UTC

This package is auto-updated.

Last update: 2024-04-28 17:07:55 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);