pdik / filamenteditorjs
Filament EditorJs
Fund package maintenance!
Pdik
Requires
- php: ^8.1
- filament/forms: ^3.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.1
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-package-tools: ^1.92
This package is auto-updated.
Last update: 2025-04-04 10:38:57 UTC
README
A FilamentPHP custom form field that brings the power of Editor.js into your admin panel. This field gives you a clean, structured, block-style content editor that stores data as JSON โ perfect for building rich, flexible, and API-friendly content.
Ideal for use cases like blog posts, lesson content, FAQs, or any interface where structured content matters.
โจ Features
- โก Block-style editing with Editor.js
- ๐ Drop-in Filament form component
- ๐งฑ Configurable tools (header, paragraph, image, list, and more)
- ๐พ Stores content as JSON
- ๐จ Built for the TALL stack (Livewire + Alpine.js)
- ๐ง Publishable config and views for customization
๐ฆ Installation
Install via composer:
composer require pdik/filamenteditorjs
Optional:
php artisan vendor:publish --tag="filamenteditorjs-config" php artisan vendor:publish --tag="filamenteditorjs-views"
๐ Usage
Inside a Filament form:
use Pdik\FilamentEditorJs\Forms\Components\EditorJs; \Pdik\FilamentEditorJs\FilamentEditorJs::make('content') ->label('Content') ->tools(['header', 'paragraph', 'list', 'image']) // Optional: configure active tools ->required(),
The field will save content as Editor.js-compatible JSON. You can render it on the frontend with the official Editor.js renderer or any custom solution. Soon there will be a Entry Field to Render the content
๐งช Testing
composer test
๐บ Coming Soon
- ๐งพ EditorJS Entries Viewer โ Easily preview and manage stored Editor.js content inside your Filament panel
- ๐งฉ Tool plugin registration via config
- ๐ก๏ธ Validation support for Editor.js blocks
- ๐ Blade component renderer for frontend use
๐ Changelog
Please see CHANGELOG for more information on what has changed recently.
๐ค Contributing
Please see CONTRIBUTING for details.
๐ Security
Please review our security policy for guidelines on reporting vulnerabilities.
๐ฅ Credits
โ๏ธ License
The MIT License (MIT). See License File for more information.