nevadskiy / nova-quill-field
A Laravel Nova WYSIWYG field based on a Quill editor.
Package info
github.com/nevadskiy/nova-quill-field
Language:Vue
pkg:composer/nevadskiy/nova-quill-field
0.1.2
2023-05-20 21:40 UTC
Requires
- php: ^7.3|^8.0
This package is auto-updated.
Last update: 2026-03-22 01:12:01 UTC
README
✅ Requirements
- Laravel Nova
4.0or 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(), ]; }