PHPackages                             mr4-lax/tiny-mce - 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. mr4-lax/tiny-mce

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

mr4-lax/tiny-mce
================

Laravel admin form TinyMCE

0.0.1(2y ago)1161MITJavaScriptPHP &gt;=7.0.0

Since Jul 21Pushed 2y ago1 watchersCompare

[ Source](https://github.com/han48/mr4-lax.tiny-mce)[ Packagist](https://packagist.org/packages/mr4-lax/tiny-mce)[ Docs](https://github.com/han48/mr4-lax.tiny-mce)[ RSS](/packages/mr4-lax-tiny-mce/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (2)Versions (2)Used By (0)

TinyMCE editor extension for laravel-admin
==========================================

[](#tinymce-editor-extension-for-laravel-admin)

This is a `laravel-admin` extension that integrates [TinyMCE 6](https://www.tiny.cloud/) into the `laravel-admin` form.

Screenshot
----------

[](#screenshot)

[![Screenshot 2023-07-21 at 10 52 44](https://private-user-images.githubusercontent.com/27817127/255068212-e51c3700-3eb7-4efd-901e-8491bb49bb9a.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ2NDgxMDYsIm5iZiI6MTc3NDY0NzgwNiwicGF0aCI6Ii8yNzgxNzEyNy8yNTUwNjgyMTItZTUxYzM3MDAtM2ViNy00ZWZkLTkwMWUtODQ5MWJiNDliYjlhLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjAzMjclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwMzI3VDIxNDMyNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTBkZDI2OGUwODViNDAzYjFlZTNjYWZkNzkxYmQxNDU0NzY1ZTQ4ZWVjNmUwN2ViOWRjNzA1NDJmZGE1OGY5NGQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.1kmkmPGGHKxtLCJC9AMLz-Ny0NHXJPvoCDorI4zY59U)](https://private-user-images.githubusercontent.com/27817127/255068212-e51c3700-3eb7-4efd-901e-8491bb49bb9a.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ2NDgxMDYsIm5iZiI6MTc3NDY0NzgwNiwicGF0aCI6Ii8yNzgxNzEyNy8yNTUwNjgyMTItZTUxYzM3MDAtM2ViNy00ZWZkLTkwMWUtODQ5MWJiNDliYjlhLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjAzMjclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwMzI3VDIxNDMyNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTBkZDI2OGUwODViNDAzYjFlZTNjYWZkNzkxYmQxNDU0NzY1ZTQ4ZWVjNmUwN2ViOWRjNzA1NDJmZGE1OGY5NGQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.1kmkmPGGHKxtLCJC9AMLz-Ny0NHXJPvoCDorI4zY59U)

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

[](#installation)

```
composer require mr4-lax/tiny-mce
php artisan vendor:publish --tag=mr4-lax-tinymce --force
```

Configuration
-------------

[](#configuration)

In the extensions section of the config/admin.php file, add some configuration that belongs to this extension.

```
'extensions' => [
    'mr4lax' => [
        // If the value is set to false, this extension will be disabled
        'enable' => true,
        'tinymce' => [
            'editor' => [
                'plugins' => 'table lists link image media wordcount',
                'toolbar' => 'undo redo | formatselect| bold italic underline strikethrough forecolor backcolor | alignleft aligncenter alignright alignjustify | indent outdent | bullist numlist | code | table | image media link',
            ],
            'editor' => [
                'upload' => 'mr4.lax.tinymce.upload',
                'store' => 'public/mr4lax/tinymce',
            ],
        ],
    ],
],
```

The configuration of plugins and toolbar of the editor can be found in [TinyMCE Document](https://www.tiny.cloud/docs/tinymce/6/basic-example/)

Usage
-----

[](#usage)

Use it in the form:

```
$form->tinymce('content')
  ->rows(5)
  ->attribute([
      'menubar' => 'true',
      'statusbar' => 'true',
  ]);
```

License
-------

[](#license)

Licensed under The [MIT License (MIT)](https://github.com/han48/mr4-lax.tiny-mce/blob/main/LICENSE).

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 66.7% 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

Unknown

Total

1

Last Release

1024d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/76fe5f5458078ee9ea3f07eb623d35e0d09540bcd83cfa688ff488739b0595f9?d=identicon)[Mr4](/maintainers/Mr4)

---

Top Contributors

[![dungdv-sbt](https://avatars.githubusercontent.com/u/92131000?v=4)](https://github.com/dungdv-sbt "dungdv-sbt (6 commits)")[![han48](https://avatars.githubusercontent.com/u/27817127?v=4)](https://github.com/han48 "han48 (3 commits)")

---

Tags

extensioneditortinymcelaravel-admin

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/mr4-lax-tiny-mce/health.svg)

```
[![Health](https://phpackages.com/badges/mr4-lax-tiny-mce/health.svg)](https://phpackages.com/packages/mr4-lax-tiny-mce)
```

###  Alternatives

[jxlwqq/material-ui

material ui for laravel-admin

9784.9k](/packages/jxlwqq-material-ui)[super-eggs/laravel-admin-tinymce

TinyMCE extension for laravel-admin

139.4k](/packages/super-eggs-laravel-admin-tinymce)[zxbodya/yii2-tinymce

Yii2 extension to use TinyMce with Compressor and FileManager

1732.1k3](/packages/zxbodya-yii2-tinymce)[jodit/yii2-jodit

Jodit - awesome WYSIWYG Editor like widget for Yii2

1621.5k](/packages/jodit-yii2-jodit)

PHPackages © 2026

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