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-09-28 18:05:29 UTC


README

https://github.com/Ghost-die/ckeditor - CKEditor 5 for Laravel-admin(https://www.laravel-admin.org) 分支而来

安装

composer require cljamal/la-ckeditor4

然后

php artisan vendor:publish --tag=cljamal-ckeditor

配置

config/admin.php 文件的 extensions 部分,添加属于此扩展的配置。

    'ckeditor' => [ 
        //Set to false if you want to disable this extension
        'enable' => true,
    
        // Editor configuration
        'config' => [    
            'language'=>'en', 
        ]
    ]

用法

Form::extend('editor', CLJAMAL\CKEditor4\Editor::class);