cimpleo / nova-summernote
A Laravel Nova wrapper for the Summernote WYSIWYG editor
Installs: 397
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 4
Open Issues: 2
Language:CSS
pkg:composer/cimpleo/nova-summernote
Requires
- php: >=7.1.0
 
This package is auto-updated.
Last update: 2025-10-13 17:12:01 UTC
README
Nova field wrapper around the summernote.
Installation
composer require cimpleo/nova-summernote- Run 
php artisan vendor:publish --tag=publicto puslish the fonts to the public directory - That's it.
 
Usage
Add the following to one of your resources
Import NovaSummernote
use Cimpleo\Summernote\Summernote;
Then call it inside the fields method of your resource.
    public function fields(Request $request)
    {
        return [
            ...,
            NovaSummernote::make('body'),
            ...
        ];
    }