承接 open-admin-ext/quill 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

open-admin-ext/quill

最新稳定版本:v1.0.1

Composer 安装命令:

composer require open-admin-ext/quill

包简介

Integrate Quill into open-admin

README 文档

README

This is a open-admin extension that integrates Quill into the open-admin form.

Screenshot

field-quill

Installation

composer require open-admin-ext/quill

Then

php artisan vendor:publish --tag=open-admin-quill

Configuration

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

    'extensions' => [

        'quill' => [

            //Set to false if you want to disable this extension
            'enable' => true,

            // Editor configuration
            'config' => [

            ]
        ]
    ]

The configuration of the editor can be found in Quill Documentation, such as configuration language and height.

    'config' => [
        'placeholder'      => 'Compose an epic...',
    ]

Usage

Use it in the form:

$form->quill('content','field label');

// Set config
$form->quill('content')->options(['placeholder' => 'Write some text...', ...]);

// Set heights
$form->quill('content')->minHeight('200px')->maxHeight('600px');

// Set toolbar
$form->quill('content')->toolbar([['bold', 'italic', 'underline', 'strike']['clean']]);

Problems?

Please not that Quill does not work nicely with the Ckeditor installed and enabled.

If Quill 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

License

Licensed under The MIT License (MIT).

统计信息

  • 总下载量: 10
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-06-01