Thanks to visit codestin.com
Credit goes to github.com

Skip to content

xbing2002/laravel-admin-ckeditor

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Integrate CKEDITOR into laravel-admin

This is a laravel-admin extension that integrates CKEDITOR into the laravel-admin form.

Screenshot

qq20180923-191508

Installation

composer require xbing2002/laravel-admin-ckeditor

Then

php artisan vendor:publish --tag=laravel-admin-ckeditor

Configuration

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' => [
        'lang'   => 'zh-CN',
        'height' => 500,
    ]

Usage

Use it in the form:

$form->ckeditor('content');

// Set config
$form->ckeditor('content')->options(['lang' => 'fr', 'height' => 500]);

Donate

Help keeping the project development going, by contribute. Thank You

License

Licensed under The MIT License (MIT).

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 64.9%
  • PHP 13.3%
  • CSS 12.8%
  • JavaScript 7.5%
  • Hack 1.3%
  • Blade 0.2%