vysotsky-productions / nova-gutenberg
Implementation of the Gutenberg editor as a Laravel Nova Field based on Laraberg.
Installs: 33
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 0
Forks: 22
Language:Vue
pkg:composer/vysotsky-productions/nova-gutenberg
Requires
- laravel/nova: 2.*
 - symfony/thanks: *
 - unisharp/laravel-filemanager: *
 - van-ons/laraberg: 1.0.1
 
This package is auto-updated.
Last update: 2025-10-12 00:31:08 UTC
README
Forked from Gutenberg editor.
Changes
- Change text direction ability.
 - Fixed hard reload on save.
 
Requirements
- Laravel Nova
 - PHP 7.1.0+
 
Installation
- Install the package:
 
composer require vysotsky-productions/nova-gutenberg:*
- Publish Laravel FileManager's assets and config:
 
php artisan vendor:publish --tag=lfm_config php artisan vendor:publish --tag=lfm_public
Usage
use VysotskyProductions\NovaGutenberg\Gutenberg; class BlogPost extends Resource { // ... public function fields(Request $request) : array { return [ // ... Gutenberg::make("Content") ->direction("rtl"), // ... ]; } // ... }