jeffersongoncalves/filament-ace-editor-field
Filament v5 form field that embeds the Ace code editor. Adds syntax-highlighted editing with configurable language modes, themes, height, and placeholder support for a richer code/text input experience in Laravel admin panels.

A Laravel Filament v4 field that integrates the Ace code editor into your forms, offering a rich, syntax-highlighted code editing experience with configurable modes and themes.
You can install the package via composer:
composer require jeffersongoncalves/filament-ace-editor-field:^2.0
Publish config file.
php artisan vendor:publish --tag=filament-ace-editor-field-config
Once installed, you can use the AceEditorInput component in your Filament forms:
use JeffersonGoncalves\Filament\AceEditorField\Forms\Components\AceEditorInput;
// In your form definition
AceEditorInput::make('description')
->mode('html')
->theme('monokai')
->height(200)
->placeholder('Enter your description here')
->required(),
You can run code analysis and formatting using the following commands:
# Run static analysis
composer analyse
# Format code
composer format
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
How can I help you explore Laravel packages today?