This is a open-admin
extension that integrates CKEDITOR
into the open-admin
form.
composer require open-admin-ext/ckeditor
Then
php artisan vendor:publish --tag=open-admin-ckeditor
In the extensions
section of the config/admin.php
file, add some configuration that belongs to this extension.
'extensions' => [
'ckeditor' => [
//Set to false if you want to disable this extension
'enable' => true,
// Editor configuration
'config' => [
]
]
]
The configuration of the editor can be found in CKEditor Documentation, such as configuration language and height.
'config' => [
'language' => 'de',
'height' => 500,
'contentsCss' => '/css/frontend-body-content.css',
]
Use it in the form:
$form->ckeditor('content');
// Set config
$form->ckeditor('content')->options(['lang' => 'fr', 'height' => 500,'contentsCss' => '/css/frontend-body-content.css']);
If ckeditor is not showing up and tells you that it's not found run the lines below to clear the compiled services and packages.
php artisan optimize:clear
Licensed under The MIT License (MIT).