A Laravel Nova wrapper for the Summernote WYSIWYG editor
cimpleo/nova-summernote is a Laravel package for a laravel nova wrapper for the summernote wysiwyg editor.
It currently has 5 GitHub stars and 397 downloads on Packagist.
Install it with composer require cimpleo/nova-summernote.
Discover more Laravel packages by cimpleo
or browse all Laravel packages to compare alternatives.
Last updated
Nova field wrapper around the summernote.
composer require cimpleo/nova-summernotephp artisan vendor:publish --tag=public to puslish the fonts to the public directoryAdd 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'),
...
];
}