PHPackages                             jangvel/nova-gutenberg - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. jangvel/nova-gutenberg

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

jangvel/nova-gutenberg
======================

Implementation of the Gutenberg editor as a Laravel Nova Field based on Laraberg.

v1.0.2(1y ago)93.1k5[1 issues](https://github.com/nickjangveladze/nova-gutenberg/issues)MITPHPPHP ^8.2

Since Jan 7Pushed 1y ago2 watchersCompare

[ Source](https://github.com/nickjangveladze/nova-gutenberg)[ Packagist](https://packagist.org/packages/jangvel/nova-gutenberg)[ RSS](/packages/jangvel-nova-gutenberg/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)Dependencies (3)Versions (4)Used By (0)

Nova Gutenberg
==============

[](#nova-gutenberg)

A nova field for Laraberg

Requirements
------------

[](#requirements)

- `php: ^8.2`
- `laravel/nova: ^4.0`
- `laravel/framework: ^8.0|^9.0|^10.0|^11.0|^12.0`

Installation
------------

[](#installation)

Install via composer

```
composer require jangvel/nova-gutenberg
```

Publish Laraberg files

```
php artisan vendor:publish --provider="VanOns\Laraberg\LarabergServiceProvider"
```

Laraberg provides a CSS file that should be present on the page you want to render content on:

```

```

Usage
-----

[](#usage)

Simply register the field in your Resource

```
use Jangvel\NovaGutenberg\NovaGutenberg;

public function fields(Request $request)
{
    return [
        NovaGutenberg::make(__('Content'), 'content'),
    ];
}
```

Add the `RendersContent` trait to your model. And optionally define the `$contentColumn` property to point to the column that holds your Laraberg content, this defaults to `content`.

```
use Illuminate\Database\Eloquent\Model;
use VanOns\Laraberg\Traits\RendersContent;

class Post extends Model
{
    use RendersContent;

    protected $contentColumn = 'content';

    ...
}
```

Call the render method on your model in a template.

```
{!! $model->render() !!}
```

### Options

[](#options)

The field has a few options you can configure.

#### Height

[](#height)

You can customize the height of the editor.

```
NovaGutenberg::make(__('Content'), 'content')->height(600)
```

###  Health Score

40

—

FairBetter than 87% of packages

Maintenance46

Moderate activity, may be stable

Popularity28

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 71.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~401 days

Total

3

Last Release

414d ago

PHP version history (2 changes)v1.0.0PHP &gt;=8.0

v1.0.2PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/7783de33ee5ccf6ca24a6050826a7a4b5f0e239696e13a616b5659f020af1427?d=identicon)[Jangvel](/maintainers/Jangvel)

---

Top Contributors

[![nickjangveladze](https://avatars.githubusercontent.com/u/13145816?v=4)](https://github.com/nickjangveladze "nickjangveladze (5 commits)")[![DarkcoderSe](https://avatars.githubusercontent.com/u/25286912?v=4)](https://github.com/DarkcoderSe "DarkcoderSe (1 commits)")[![mydnic](https://avatars.githubusercontent.com/u/2733767?v=4)](https://github.com/mydnic "mydnic (1 commits)")

---

Tags

gutenberglaravelnovalaravelnovagutenberglaraberg

### Embed Badge

![Health badge](/badges/jangvel-nova-gutenberg/health.svg)

```
[![Health](https://phpackages.com/badges/jangvel-nova-gutenberg/health.svg)](https://phpackages.com/packages/jangvel-nova-gutenberg)
```

###  Alternatives

[dillingham/nova-attach-many

Attach Many Nova field

2712.0M2](/packages/dillingham-nova-attach-many)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

14720.0k](/packages/markwalet-nova-modal-response)[alexwenzel/nova-dependency-container

A Laravel Nova 4 form container for grouping fields that depend on other field values.

461.0M2](/packages/alexwenzel-nova-dependency-container)[stepanenko3/nova-cards

A Laravel Nova info cards.

33143.0k](/packages/stepanenko3-nova-cards)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
