Skip to content

laravel-admin-extensions/simditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simditor extension for laravel-admin

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

Screenshot

simditor

Installation

composer require jxlwqq/simditor php artisan vendor:publish --tag=laravel-admin-simditor

Configuration

In the extensions section of the config/admin.php file, add some configuration that belongs to this extension.

'extensions' => [ 'simditor' => [ // Set to false if you want to disable this extension 'enable' => true, // Editor configuration 'config' => [ 'upload' => [ 'url' => '/admin/api/upload', # example api route: admin/api/upload 'fileKey' => 'upload_file', 'connectionCount' => 3, 'leaveConfirm' => 'Uploading is in progress, are you sure to leave this page?' ], 'tabIndent' => true, 'toolbar' => ['title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent', 'alignment'], 'toolbarFloat' => true, 'toolbarFloatOffset' => 0, 'toolbarHidden' => false, 'pasteImage' => true, 'cleanPaste' => false, ] ] ]

The configuration of the editor can be found in Simditor Documentation.

Usage

Use it in the form form:

$form->simditor('content');

More resources

Awesome Laravel-admin

License

Licensed under The MIT License (MIT).

About

Integrates simditor into Laravel-admin

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages