cljamal / la-ckeditor4
CKEditor 4 Full For Laravel-admin
1.0.3
2020-09-28 09:09 UTC
Requires
- php: >=7.0.0
- encore/laravel-admin: ~1.6
Requires (Dev)
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2026-02-28 21:24:59 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);