This Laravel Nova package adds a Trumbowyg field to Nova's arsenal of fields.
php: >=8.0
laravel/nova: ^4.0
Install the package in to a Laravel app that uses Nova via composer:
composer require outl1ne/nova-trumbowyg-field
Publish icons SVG:
php artisan vendor:publish --provider="Outl1ne\NovaTrumbowygField\FieldServiceProvider" --tag=public
use Outl1ne\NovaTrumbowygField\Trumbowyg;
public function fields(Request $request) {
Trumbowyg::make('Content', 'content'),
}
Nova Trumbowyg Field is open-sourced software licensed under the MIT license.