valentin-morice/filament-json-column

A simple package to view and edit your JSON columns in Filament

v2.0.1 2025-04-12 14:55 UTC

This package is auto-updated.

Last update: 2025-04-12 14:57:37 UTC


README

v2.0 BREAKING CHANGE

Class is now named JsonColum/JsonInfolist, previously FilamentJsonColumn

A simple package to view and edit your JSON columns in Filament.

image image

Installation

You can install the package via composer:

composer require valentin-morice/filament-json-column

Usage

The filament-json-column plugin works as any other Filament Form Builder classes. Make sure the column on which it is called is cast to JSON or array within your Eloquent model.

use ValentinMorice\FilamentJsonColumn\JsonColumn;
use ValentinMorice\FilamentJsonColumn\JsonInfolist;

public static function form(Form $form): Form
    {
        return $form
            ->schema([
                JsonColumn::make('example'),
            ]);
    }

// An infolist component is also available.
public static function infolist(Infolist $infolist): Infolist
    {
        return $infolist
            ->schema([
                JsonInfolist::make('example'),
            ]);
    }

The form component provides you with two tabs: Viewer & Editor. The Viewer tab pretty prints your JSON data, while the Editor tab lets you edit it conveniently. All the methods provided by the plugin accept closures, injected with standard Filament utilities.

Personnalize the accent color

The tab selector menu uses the slateblue CSS color by default. However, you can choose any other color:

JsonColumn::make('example')->accent(string '#FFFFFF'|Closure); // The input needs to be a valid CSS color

Display a single tab

If you'd like to use only one of the tabs, without giving your user the possibility to switch to another, use the following methods:

JsonColumn::make('example')->editorOnly(bool|Closure); // Displays only the editor tab
JsonColumn::make('example')->viewerOnly(bool|Closure); // Displays only the viewer tab

Change the height

JsonColumn::make('example')->editorHeight(int 500|Closure); // Accepts an int, defaults to 300
JsonColumn::make('example')->viewerHeight(int 500|Closure); // Accepts an int, defaults to 300

Editor modes

Customize the editor modes. Accepted values (and default) are: ['code', 'form', 'text', 'tree', 'view', 'preview' ]

JsonColumn::make('example')->accent(array|Closure ['code', 'text', 'tree']);

Validation

Values are validated as proper JSON by default.

Credits

I've taken inspiration from the following plugins: Pretty JSON & JSONeditor.

License

The MIT License (MIT). Please see License File for more information.