cljamal / la-ckeditor4
CKEditor 4 Full For Laravel-admin
Installs: 1 192
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=7.0.0
- encore/laravel-admin: ~1.6
Requires (Dev)
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2025-03-28 19:17: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);