PHPackages                             open-admin-ext/quill - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. open-admin-ext/quill

ActiveLibrary[Admin Panels](/categories/admin)

open-admin-ext/quill
====================

Integrate Quill into open-admin

v1.0.1(1y ago)017[1 issues](https://github.com/open-admin-org/quill/issues)MITPHPPHP &gt;=7.0.0

Since Jun 1Pushed 1y agoCompare

[ Source](https://github.com/open-admin-org/quill)[ Packagist](https://packagist.org/packages/open-admin-ext/quill)[ Docs](https://github.com/open-admin-ext/quill)[ RSS](/packages/open-admin-ext-quill/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (4)Versions (3)Used By (0)

Integrate Quill into open-admin
===============================

[](#integrate-quill-into-open-admin)

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

Screenshot
----------

[](#screenshot)

[![field-quill](https://private-user-images.githubusercontent.com/86517067/449537757-bb1e884d-b3ac-4e3a-83e6-79fb2dbfa776.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODIxMzc0NjcsIm5iZiI6MTc4MjEzNzE2NywicGF0aCI6Ii84NjUxNzA2Ny80NDk1Mzc3NTctYmIxZTg4NGQtYjNhYy00ZTNhLTgzZTYtNzlmYjJkYmZhNzc2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA2MjIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNjIyVDE0MDYwN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWQyYjYxMDk0MWM5YTEyYzhlNzMxOWI2ZmIyZGI4ZDkxMjNkYTVhZjlhNjU4Y2JjYTk4ZDFkNjI2ZjM2ZTAyNWMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.-8-9WkiAySh5G5M9vTvaQzvsSiNGJOPoLwW6WI1_InA)](https://private-user-images.githubusercontent.com/86517067/449537757-bb1e884d-b3ac-4e3a-83e6-79fb2dbfa776.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODIxMzc0NjcsIm5iZiI6MTc4MjEzNzE2NywicGF0aCI6Ii84NjUxNzA2Ny80NDk1Mzc3NTctYmIxZTg4NGQtYjNhYy00ZTNhLTgzZTYtNzlmYjJkYmZhNzc2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA2MjIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNjIyVDE0MDYwN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWQyYjYxMDk0MWM5YTEyYzhlNzMxOWI2ZmIyZGI4ZDkxMjNkYTVhZjlhNjU4Y2JjYTk4ZDFkNjI2ZjM2ZTAyNWMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.-8-9WkiAySh5G5M9vTvaQzvsSiNGJOPoLwW6WI1_InA)

Installation
------------

[](#installation)

```
composer require open-admin-ext/quill
```

Then

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

Configuration
-------------

[](#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](https://quilljs.com/docs/configuration/), such as configuration language and height.

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

Usage
-----

[](#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?
---------

[](#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
-------

[](#license)

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

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance47

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

397d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6c8d24612adef7b7662b8ae3122ae2e9c69e9967248ad86939079ce92a10b6e2?d=identicon)[open-admin-org](/maintainers/open-admin-org)

---

Top Contributors

[![open-admin-org](https://avatars.githubusercontent.com/u/86517067?v=4)](https://github.com/open-admin-org "open-admin-org (4 commits)")

---

Tags

extensioneditorwysiwygquillopen-admin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/open-admin-ext-quill/health.svg)

```
[![Health](https://phpackages.com/badges/open-admin-ext-quill/health.svg)](https://phpackages.com/packages/open-admin-ext-quill)
```

###  Alternatives

[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.7M223](/packages/backpack-crud)[laravel-admin-ext/wang-editor

wangEditor extension for laravel-admin

6285.4k](/packages/laravel-admin-ext-wang-editor)[guanguans/dcat-login-captcha

Dcat admin login captcha. - Dcat admin 登录验证码。

42112.7k](/packages/guanguans-dcat-login-captcha)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
