PHPackages                             visualbuilder/filament-tinyeditor - 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. visualbuilder/filament-tinyeditor

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

visualbuilder/filament-tinyeditor
=================================

Filament TinyMce Editor v6

6.0.0(1mo ago)028.6k—5%[4 PRs](https://github.com/visualbuilder/filament-tinyeditor/pulls)3MITPHPPHP ^8.2CI passing

Since Feb 11Pushed 1mo agoCompare

[ Source](https://github.com/visualbuilder/filament-tinyeditor)[ Packagist](https://packagist.org/packages/visualbuilder/filament-tinyeditor)[ RSS](/packages/visualbuilder-filament-tinyeditor/feed)WikiDiscussions 6.x Synced today

READMEChangelogDependencies (11)Versions (21)Used By (3)

Filament TinyMCE Editor
=======================

[](#filament-tinymce-editor)

A [TinyMCE](https://www.tiny.cloud/) integration for [Filament](https://filamentphp.com/) Admin/Forms.

Version Compatibility
---------------------

[](#version-compatibility)

Package VersionFilamentLivewireLaravelPHPTinyMCE6.x5.x4.x11.x, 12.x8.2+8.x5.x5.x4.x11.x, 12.x8.2+7.x4.x4.x3.x10.x, 11.x8.2+7.xInstallation
------------

[](#installation)

Install the package via composer

```
# For Filament 5.x + TinyMCE 8.x
composer require visualbuilder/filament-tinyeditor:^6.0

# For Filament 5.x + TinyMCE 7.x
composer require visualbuilder/filament-tinyeditor:^5.0

# For Filament 4.x
composer require visualbuilder/filament-tinyeditor:^4.0
```

Publish assets

```
php artisan vendor:publish --provider="Visualbuilder\FilamentTinyEditor\TinyeditorServiceProvider"
php artisan vendor:publish --provider="Visualbuilder\FilamentTinyEditor\TinyeditorServiceProvider" --tag="config"
php artisan vendor:publish --provider="Visualbuilder\FilamentTinyEditor\TinyeditorServiceProvider" --tag="views"
php artisan vendor:publish --provider="Visualbuilder\FilamentTinyEditor\TinyeditorServiceProvider" --tag="public"
```

Usage
-----

[](#usage)

The editor extends the default Field class so most other methods available on that class can be used when adding it to a form.

```
use Visualbuilder\FilamentTinyEditor\TinyEditor;

TinyEditor::make('content')
	->fileAttachmentsDisk('public')
	->fileAttachmentsVisibility('public')
	->fileAttachmentsDirectory('uploads')
    ->profile('default|simple|full|minimal|none|custom')
	->rtl() // Set RTL or use ->direction('auto|rtl|ltr')
	->resize('both')
	->columnSpan('full')
    ->required();
```

Config
------

[](#config)

The plugin will work without publishing the config, but should you need to change any of the default settings you can publish the config file with the following Artisan command:

```
php artisan vendor:publish --tag="filament-tinyeditor-config"
```

### Profiles / Tools

[](#profiles--tools)

The package comes with 4 profiles (or toolbars) out of the box. You can also use a pipe `|` to separate tools into groups. The default profile is the full set of tools.

```
'profiles' => [
    'default' => [
		'plugins' => 'accordion autoresize codesample directionality advlist link image lists preview pagebreak searchreplace wordcount code fullscreen insertdatetime media table emoticons',
		// Installing external plugins
		'external_plugins' => [
		'paste_from_word' => 'https://unpkg.com/@pangaeatech/tinymce-paste-from-word-plugin@latest/index.js'
    ],
		'toolbar' => 'undo redo removeformat | styles | bold italic | rtl ltr | alignjustify alignright aligncenter alignleft | numlist bullist outdent indent | forecolor backcolor | blockquote table toc hr | image link media codesample emoticons | wordcount fullscreen',
		'upload_directory' => null,
		// Custom Configs
		'custom_configs' => [
		'paste_webkit_styles' => 'color font-size',
    ]
	],

	'simple' => [
		'plugins' => 'autoresize directionality emoticons link wordcount',
		'toolbar' => 'removeformat | bold italic | rtl ltr | numlist bullist | link emoticons',
		'upload_directory' => null,
	],

	'minimal' => [
		'plugins' => 'link wordcount',
		'toolbar' => 'bold italic link numlist bullist',
		'upload_directory' => null,
	],

	'full' => [
		'plugins' => 'accordion autoresize codesample directionality advlist autolink link image lists charmap preview anchor pagebreak searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media table emoticons template help',
		'toolbar' => 'undo redo removeformat | styles | bold italic | rtl ltr | alignjustify alignright aligncenter alignleft | numlist bullist outdent indent accordion | forecolor backcolor | blockquote table toc hr | image link anchor media codesample emoticons | visualblocks print preview wordcount fullscreen help',
		'upload_directory' => null,
	],
],
```

### RTL Support

[](#rtl-support)

In order for things like text align to work properly with RTL languages you can switch the `direction` key in the config to 'rtl'.

```
// config/filament-tinyeditor.php
'direction' => 'rtl'
```

Versioning
----------

[](#versioning)

This project follow the [Semantic Versioning](https://semver.org/) guidelines.

License
-------

[](#license)

Licensed under the MIT license, see [LICENSE.md](LICENSE.md) for details.

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance91

Actively maintained with recent releases

Popularity28

Limited adoption so far

Community22

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 72.5% 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 ~33 days

Recently: every ~12 days

Total

15

Last Release

46d ago

Major Versions

3.0.0 → 4.0.12025-08-19

4.x-dev → 5.0.02026-03-31

5.x-dev → 6.0.02026-05-19

PHP version history (2 changes)3.0.0PHP ^8.1

4.0.3PHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/98528425?v=4)[Eko UK Limited](/maintainers/ekoukltd)[@ekoukltd](https://github.com/ekoukltd)

---

Top Contributors

[![amidesfahani](https://avatars.githubusercontent.com/u/61671721?v=4)](https://github.com/amidesfahani "amidesfahani (50 commits)")[![cannycookie](https://avatars.githubusercontent.com/u/500822?v=4)](https://github.com/cannycookie "cannycookie (9 commits)")[![dajanvulaj](https://avatars.githubusercontent.com/u/6430816?v=4)](https://github.com/dajanvulaj "dajanvulaj (2 commits)")[![leeoptima](https://avatars.githubusercontent.com/u/202847690?v=4)](https://github.com/leeoptima "leeoptima (1 commits)")[![reksmeysrey](https://avatars.githubusercontent.com/u/35394133?v=4)](https://github.com/reksmeysrey "reksmeysrey (1 commits)")[![ringattila](https://avatars.githubusercontent.com/u/166022255?v=4)](https://github.com/ringattila "ringattila (1 commits)")[![robinmalburn](https://avatars.githubusercontent.com/u/1475492?v=4)](https://github.com/robinmalburn "robinmalburn (1 commits)")[![a21ns1g4ts](https://avatars.githubusercontent.com/u/11599205?v=4)](https://github.com/a21ns1g4ts "a21ns1g4ts (1 commits)")[![ronefel](https://avatars.githubusercontent.com/u/9198525?v=4)](https://github.com/ronefel "ronefel (1 commits)")[![anheru88](https://avatars.githubusercontent.com/u/3945572?v=4)](https://github.com/anheru88 "anheru88 (1 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

laraveltinymcefilamenttinyeditor

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/visualbuilder-filament-tinyeditor/health.svg)

```
[![Health](https://phpackages.com/badges/visualbuilder-filament-tinyeditor/health.svg)](https://phpackages.com/packages/visualbuilder-filament-tinyeditor)
```

###  Alternatives

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[amidesfahani/filament-tinyeditor

Filament TinyMce Editor

102437.2k7](/packages/amidesfahani-filament-tinyeditor)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)

PHPackages © 2026

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