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

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

codeisawesomehq/filament-tinyeditor
===================================

Filament TinyMce Editor v6

1.4.7(2y ago)142.8k↓45.1%MITPHPPHP ^8.1

Since Nov 5Pushed 2y agoCompare

[ Source](https://github.com/codeisawesomehq/filament-tinyeditor)[ Packagist](https://packagist.org/packages/codeisawesomehq/filament-tinyeditor)[ RSS](/packages/codeisawesomehq-filament-tinyeditor/feed)WikiDiscussions 1.x Synced 2d ago

READMEChangelog (6)Dependencies (1)Versions (11)Used By (0)

Filament TineMce Editor
=======================

[](#filament-tinemce-editor)

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

[![tiny-editor](images/filament-tinyeditor.jpg?raw=true)](images/filament-tinyeditor.jpg?raw=true)

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

[](#installation)

Install the package via composer

```
composer require codeisawesomehq/filament-tinyeditor
```

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 CodeIsAwesome\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')
	->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',
		'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,
	],

	'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

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 62.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 ~0 days

Total

11

Last Release

971d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/141228751?v=4)[codeisawesomehq](/maintainers/codeisawesomehq)[@codeisawesomehq](https://github.com/codeisawesomehq)

---

Top Contributors

[![aswilam](https://avatars.githubusercontent.com/u/690153?v=4)](https://github.com/aswilam "aswilam (10 commits)")[![amidesfahani](https://avatars.githubusercontent.com/u/61671721?v=4)](https://github.com/amidesfahani "amidesfahani (6 commits)")

---

Tags

laraveltinymcefilamenttinyeditor

### Embed Badge

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

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

###  Alternatives

[amidesfahani/filament-tinyeditor

Filament TinyMce Editor

102437.2k7](/packages/amidesfahani-filament-tinyeditor)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[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)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k1](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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