PHPackages                             cube-agency/filament-json - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. cube-agency/filament-json

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

cube-agency/filament-json
=========================

JSON field for Filament

v3.0.0(1w ago)33.2k↓75.2%21MITPHPPHP ^8.2

Since Jan 3Pushed 1w ago4 watchersCompare

[ Source](https://github.com/cube-agency/filament-json)[ Packagist](https://packagist.org/packages/cube-agency/filament-json)[ Docs](https://github.com/cube-agency/filament-json)[ RSS](/packages/cube-agency-filament-json/feed)WikiDiscussions main Synced yesterday

READMEChangelog (5)Dependencies (16)Versions (9)Used By (1)

JSON field for Filament
=======================

[](#json-field-for-filament)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b8332b8625c0a323a15de25c0b7c929a3abef993f7e56122bcd8054d9ac8b4de/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f637562652d6167656e63792f66696c616d656e742d6a736f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cube-agency/filament-json)[![GitHub Tests Action Status](https://camo.githubusercontent.com/bf1b595815564f849eb28f5d2dc7276905d88dd31d6c7892892b5f12a0ee5a32/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f637562652d6167656e63792f66696c616d656e742d6a736f6e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/cube-agency/filament-json/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/6e73df6c54b8a94dd925ca64c8eb79cc632d43f286e037804f58cf974d7735b9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f637562652d6167656e63792f66696c616d656e742d6a736f6e2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/cube-agency/filament-json/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/8b9316397512b1841160fc4330ae1f875fef56a12a0ed08ae9c0463dfa9ee9b2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f637562652d6167656e63792f66696c616d656e742d6a736f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cube-agency/filament-json)

Basic Filament field to save data as JSON

Compatibility
-------------

[](#compatibility)

Package VersionFilament Version1.x3.x2.x4.x3.x5.xInstallation
------------

[](#installation)

You can install the package via composer:

```
composer require cube-agency/filament-json
```

Usage
-----

[](#usage)

Add json column to your table:

```
$table->json('meta')->nullable();
```

and add this field to your form:

```
use CubeAgency\FilamentJson\Filament\Forms\Components\Json;
use Filament\Forms\Components\FileUpload;
use Filament\Forms\Components\TagsInput;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\TextInput;
use Filament\Schemas\Components\Grid;
use Filament\Schemas\Schema;

public static function form(Schema $schema): Schema
{
    return $schema
        ->components([
            // ...
            Json::make('meta')
                ->schema([
                    Grid::make()
                        ->schema([
                            TextInput::make('title'),
                            TagsInput::make('keywords'),
                        ]),
                    Grid::make()
                        ->schema([
                            Textarea::make('description')
                                ->rows(3),
                            FileUpload::make('image')
                                ->image()
                                ->imagePreviewHeight('64'),
                        ]),
                ]),
            // ...
        ]);
}
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Dmitrijs Mihailovs](https://github.com/dmitrijs.mihailovs)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

53

—

FairBetter than 96% of packages

Maintenance98

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

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

Every ~181 days

Recently: every ~209 days

Total

6

Last Release

8d ago

Major Versions

v1.0.2 → v2.0.02025-10-06

v2.0.0 → v3.0.02026-06-25

PHP version history (2 changes)v1.0.0PHP ^8.1

v1.0.1PHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/686243?v=4)[Miks Miķelsons](/maintainers/miks)[@miks](https://github.com/miks)

---

Top Contributors

[![dmitrijsmihailovs](https://avatars.githubusercontent.com/u/6555569?v=4)](https://github.com/dmitrijsmihailovs "dmitrijsmihailovs (13 commits)")

---

Tags

laravelfilamentfilament-jsoncube-agency

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/cube-agency-filament-json/health.svg)

```
[![Health](https://phpackages.com/badges/cube-agency-filament-json/health.svg)](https://phpackages.com/packages/cube-agency-filament-json)
```

###  Alternatives

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M24](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k1](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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