PHPackages                             johnathan/nova-trumbowyg - 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. [Templating &amp; Views](/categories/templating)
4. /
5. johnathan/nova-trumbowyg

ActiveLibrary[Templating &amp; Views](/categories/templating)

johnathan/nova-trumbowyg
========================

A Laravel Nova wrapper for the Trumbowyg WYSIWYG editor

1.0.12(6y ago)25214.0k—9.2%9[3 issues](https://github.com/Johnathan/nova-trumbowyg/issues)[1 PRs](https://github.com/Johnathan/nova-trumbowyg/pulls)MITVuePHP &gt;=7.1.0

Since Aug 23Pushed 2y ago2 watchersCompare

[ Source](https://github.com/Johnathan/nova-trumbowyg)[ Packagist](https://packagist.org/packages/johnathan/nova-trumbowyg)[ RSS](/packages/johnathan-nova-trumbowyg/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)DependenciesVersions (15)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/dd26238142f7f53cd25775e4e37491eac3c0955b96e70eb947c8564426503247/68747470733a2f2f706f7365722e707567782e6f72672f6a6f686e617468616e2f6e6f76612d7472756d626f7779672f762f737461626c65)](https://packagist.org/packages/johnathan/nova-trumbowyg) [![Total Downloads](https://camo.githubusercontent.com/d5028c3d9347a484905a83d32fda79ec35fe2302af9cd6b4c4788d0adba629b7/68747470733a2f2f706f7365722e707567782e6f72672f6a6f686e617468616e2f6e6f76612d7472756d626f7779672f646f776e6c6f616473)](https://packagist.org/packages/johnathan/nova-trumbowyg) [![Latest Unstable Version](https://camo.githubusercontent.com/95d324aba0207d40fb71bcf3aa1323f47587170ed036b32644f6757c3979d927/68747470733a2f2f706f7365722e707567782e6f72672f6a6f686e617468616e2f6e6f76612d7472756d626f7779672f762f756e737461626c65)](https://packagist.org/packages/johnathan/nova-trumbowyg) [![License](https://camo.githubusercontent.com/528e2cf612c830578ae61bb0a04c71a7c5c87fb71e276e24efb400b2854051c0/68747470733a2f2f706f7365722e707567782e6f72672f6a6f686e617468616e2f6e6f76612d7472756d626f7779672f6c6963656e7365)](https://packagist.org/packages/johnathan/nova-trumbowyg)

Nova Trumbowyg
==============

[](#nova-trumbowyg)

Nova field wrapper around the [vue-trumbowyg](https://github.com/ankurk91/vue-trumbowyg) which is a wrapper around [trumbowyg](https://alex-d.github.io/Trumbowyg/).

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

[](#installation)

1. `composer require johnathan/nova-trumbowyg`
2. Run `php artisan vendor:publish --tag=public` to puslish the icon font to the public directory
3. That's it.

Usage
-----

[](#usage)

Add the following to one of your resources

Import NovaTrumbowyg

`use Johnathan\NovaTrumbowyg\NovaTrumbowyg;`

Then call it inside the fields method of your resource.

```
    public function fields(Request $request)
    {
        return [
            ...,
            NovaTrumbowyg::make('body'),
            ...
        ];
    }

```

You can also pass in an array of options to use with Trumbowyg

```
    public function fields(Request $request)
    {
        return [
            ...,
            NovaTrumbowyg::make('body')

                ->withMeta(['options' => [
                    'btns' => [
                        ['viewHTML'],
                        ['justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull'],
                    ]
                ]]),
             ...
        ];
    }

```

By default, the Trumbowyg field will not display their content when viewing a resource on its detail page. It will be hidden behind a "Show Content" link, that when clicked will reveal the content. You may specify the Trumbowyg field should always display its content by calling the alwaysShow method on the field itself

```
    public function fields(Request $request)
    {
        return [
            ...,
            NovaTrumbowyg::make('body')->alwaysShow(),
            ...
        ];
    }

```

By default, the Trumbowyg field will display in full width you can change this back to Nova's default (half) by using the `defaultWidth` method on the field, as shown below.

```
    public function fields(Request $request)
    {
        return [
            ...,
            NovaTrumbowyg::make('body')->defaultWidth(),
            ...
        ];
    }

```

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity43

Moderate usage in the ecosystem

Community17

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 52.6% 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 ~32 days

Recently: every ~89 days

Total

13

Last Release

2433d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b7ad8d0fa010eefd7f02a44b81bfe688588474c9e89461e95779889b8b326dac?d=identicon)[Johnathan](/maintainers/Johnathan)

---

Top Contributors

[![Johnathan](https://avatars.githubusercontent.com/u/144165?v=4)](https://github.com/Johnathan "Johnathan (10 commits)")[![EdwinHoksberg](https://avatars.githubusercontent.com/u/6866019?v=4)](https://github.com/EdwinHoksberg "EdwinHoksberg (3 commits)")[![wize-wiz](https://avatars.githubusercontent.com/u/9093559?v=4)](https://github.com/wize-wiz "wize-wiz (3 commits)")[![aihowes](https://avatars.githubusercontent.com/u/1009192?v=4)](https://github.com/aihowes "aihowes (1 commits)")[![JulianMar](https://avatars.githubusercontent.com/u/29117090?v=4)](https://github.com/JulianMar "JulianMar (1 commits)")[![talovicnedim](https://avatars.githubusercontent.com/u/4561819?v=4)](https://github.com/talovicnedim "talovicnedim (1 commits)")

---

Tags

laravelwysiwygnovatrumbowyg

### Embed Badge

![Health badge](/badges/johnathan-nova-trumbowyg/health.svg)

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

###  Alternatives

[whitecube/nova-flexible-content

Flexible Content &amp; Repeater Fields for Laravel Nova.

8053.0M25](/packages/whitecube-nova-flexible-content)[outl1ne/nova-multiselect-field

A multiple select field for Laravel Nova.

3402.9M2](/packages/outl1ne-nova-multiselect-field)[waynestate/nova-ckeditor4-field

This nova package allows you to use CKEditor 4 for text areas.

62739.1k8](/packages/waynestate-nova-ckeditor4-field)[saumini/ellipsis-textarea

A Laravel Nova textarea field with ellipsis support

12146.9k](/packages/saumini-ellipsis-textarea)

PHPackages © 2026

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