Nova field wrapper around the summernote.
composer require cimpleo/nova-summernote
- Run
php artisan vendor:publish --tag=public
to puslish the fonts to the public directory - That's it.
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'),
...
];
}