nevadskiy / nova-quill-field
A Laravel Nova WYSIWYG field based on a Quill editor.
Installs: 28 515
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Language:Vue
pkg:composer/nevadskiy/nova-quill-field
Requires
- php: ^7.3|^8.0
This package is auto-updated.
Last update: 2025-09-22 00:11:04 UTC
README
✅ Requirements
- Laravel Nova
4.0
or newer
🔌 Installation
Install the package via Composer:
composer require nevadskiy/nova-quill-field
📺 Demo
use Nevadskiy\Quill\Quill; public function fields(): array { return [ Quill::make('Content') ->withFiles() ->theme('bubble') ->toolbar([ [['header' => 2]], ['bold', 'italic', 'underline'], [['list' => 'ordered'], ['list' => 'bullet']], ['blockquote'], ['link', 'image', 'video'], ['clean'], ]) ->alwaysShow(), ]; }