https://github.com/laravel-admin-extensions/summernote
Summernote extension for laravel-admin
https://github.com/laravel-admin-extensions/summernote
extension laravel-admin summernote
Last synced: about 2 months ago
JSON representation
Summernote extension for laravel-admin
- Host: GitHub
- URL: https://github.com/laravel-admin-extensions/summernote
- Owner: laravel-admin-extensions
- License: mit
- Created: 2018-09-05T05:23:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-28T07:31:25.000Z (over 1 year ago)
- Last Synced: 2025-04-16T08:17:57.416Z (2 months ago)
- Topics: extension, laravel-admin, summernote
- Language: PHP
- Size: 416 KB
- Stars: 37
- Watchers: 1
- Forks: 24
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-laravel-admin - summernote - Summernote 富文本编辑器 (扩展包 / 字段类扩展包)
README
Summernote editor extension for laravel-admin
======This is a `laravel-admin` extension that integrates `Summernote` into the `laravel-admin` form.
## Screenshot

## Installation
```bash
composer require laravel-admin-ext/summernote
```Then
```bash
php artisan vendor:publish --tag=laravel-admin-summernote
```## Configuration
In the `extensions` section of the `config/admin.php` file, add some configuration that belongs to this extension.
```php'extensions' => [
'summernote' => [
//Set to false if you want to disable this extension
'enable' => true,
// Editor configuration
'config' => [
]
]
]```
The configuration of the editor can be found in [Summernote Documentation](https://summernote.org/getting-started/), such as configuration language and height.
```php
'config' => [
'lang' => 'zh-CN',
'height' => 500,
]
```## Usage
Use it in the form:
```php
$form->summernote('content');
```## Donate
> Help keeping the project development going, by donating a little. Thanks in advance.
[](https://www.paypal.me/zousong)

License
------------
Licensed under [The MIT License (MIT)](LICENSE).