curder/filament-rich-editor-source-code

Allow Filament 4.x or 5.x View and edit the source code of the rich text editor in the form of a modal.

Fund package maintenance!
curder

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:JavaScript

pkg:composer/curder/filament-rich-editor-source-code

v0.1.0 2026-01-31 14:05 UTC

This package is auto-updated.

Last update: 2026-01-31 14:17:16 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Allow Filament 4.x Or 5.x View and edit the source code of the rich text editor in the form field.

Installation

You can install the package via composer:

composer require curder/filament-rich-editor-source-code

You need to publish the package assets using the following command:

php artisan filament:assets

You can publish the language files using the following command:

php artisan vendor:publish --tag=filament-rich-editor-source-code-translations

Usage

To enable the source code button in the Filament Rich Editor, you need to customize the toolbar buttons by adding the source-code button to the array of toolbar buttons.

RichEditor::make('html')
    ->toolbarButtons([
        ['source-code'], // Add the `source-code` button to the toolbar.
        [ 'bold', 'italic', 'underline', 'strike', 'subscript', 'superscript', 'link'],
        ['h2', 'h3', 'alignStart', 'alignCenter', 'alignEnd'],
        ['blockquote', 'codeBlock', 'bulletList', 'orderedList'],
        ['table', 'attachFiles', 'customBlocks'], // The `customBlocks` and `mergeTags` tools are also added here if those features are used.
        ['undo', 'redo'],
    ]),

Testing

composer test

Development

You can set up the development environment by running the following commands:

Add the following script to your composer.json to require the development dependencies:

{
    "require": {
        "php": "^8.2",
        "curder/filament-rich-editor-source-code": "@dev",
        "filament/filament": "^5.0",
        "laravel/framework": "^12.0",
        "laravel/tinker": "^2.10.1"
    },
    "repositories": [
        {"type": "path", "url": "/Users/curder/Codes/GitHub/curder/filament-rich-editor-source-code"}
    ]
}

Then run:

composer update curder/filament-rich-editor-source-code

If you change js file, should run the following commands to install dependencies and build assets:

# Install the dependencies
pnpm i 

# Build the assets initially
node ./bin/build.js

And run the following command to your project directory update the assets after changing js files:

php artisan filament:assets

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

PRs are welcome.

  • Keep changes focused.
  • Include tests if behavior changes.

Security

If you discover a security issue, please report it privately by emailing the maintainer.

Credits

License

MIT. See LICENSE.