PHPackages                             flexpik/filament-studio - 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. [Admin Panels](/categories/admin)
4. /
5. flexpik/filament-studio

ActiveLibrary[Admin Panels](/categories/admin)

flexpik/filament-studio
=======================

Dynamic data model manager for Filament — build unlimited collections with custom fields, EAV storage, versioning, and multi-tenancy

v1.0.0(1mo ago)10[2 PRs](https://github.com/flexpik/filament-studio/pulls)MITPHPPHP ^8.2CI passing

Since Mar 27Pushed 1mo agoCompare

[ Source](https://github.com/flexpik/filament-studio)[ Packagist](https://packagist.org/packages/flexpik/filament-studio)[ RSS](/packages/flexpik-filament-studio/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (6)Versions (4)Used By (0)

 [![Filament Studio — Plugin Preview](https://raw.githubusercontent.com/flexpik/filament-studio/main/art/preview.png)](https://raw.githubusercontent.com/flexpik/filament-studio/main/art/preview.png)

 [![Latest Version on Packagist](https://camo.githubusercontent.com/71e2d745a2dcd6c8bbe3bfa9ffbd7eaede31023a554228d364dcbfd9db92998a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666c657870696b2f66696c616d656e742d73747564696f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/flexpik/filament-studio) [![Total Downloads](https://camo.githubusercontent.com/df39dc18be8636d14c4ae7236a8f0a90d55d8be581bf1ccbbd3253616bfeaf8a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f666c657870696b2f66696c616d656e742d73747564696f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/flexpik/filament-studio) [![Tests](https://camo.githubusercontent.com/7072d80a2fd8ca3d2f648c15ffef7899feb12d66453e1923337f32714fd36f9c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f666c657870696b2f66696c616d656e742d73747564696f2f74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/flexpik/filament-studio/actions) [![License](https://camo.githubusercontent.com/763df9ce96c004ba8a58ce3c3775bed1b01ef9495ef65a018dd48acdc206aa86/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f666c657870696b2f66696c616d656e742d73747564696f2e7376673f7374796c653d666c61742d737175617265)](https://github.com/flexpik/filament-studio/blob/main/LICENSE.md)

Filament Studio
===============

[](#filament-studio)

**A dynamic data model manager for Filament v5 — create collections, define fields, manage records, and build dashboards, all at runtime. No migrations required.**

Filament Studio turns your Filament admin panel into a flexible data platform. Define custom data structures through a visual interface, and the plugin handles the rest: forms, tables, filters, API endpoints, dashboards, and access control — all powered by an EAV (Entity-Attribute-Value) storage engine.

Why Filament Studio?
--------------------

[](#why-filament-studio)

- **No migrations per collection** — Add new data types at runtime without touching your codebase
- **Full Filament integration** — Native forms, tables, filters, and actions that look and feel like hand-crafted resources
- **Production-ready** — Multi-tenancy, authorization, versioning, soft deletes, and audit logging out of the box
- **Extensible** — Register custom field types, panel types, condition resolvers, and lifecycle hooks

Features
--------

[](#features)

### Dynamic Collections

[](#dynamic-collections)

Create and manage data collections with custom fields through the admin UI. Each collection gets a fully functional CRUD interface with forms, tables, and filters — generated dynamically from the field definitions.

**33 built-in field types** across 9 categories:

CategoryTypesTextText, Textarea, Rich Editor, Markdown, Password, Slug, Color, HiddenNumericInteger, Decimal, RangeBooleanCheckbox, ToggleSelectionSelect, Multi-Select, Radio, Checkbox List, TagsDate &amp; TimeDate, Time, DatetimeFileFile, Image, AvatarRelationalBelongs To, Has Many, Belongs To ManyStructuredRepeater, Builder, Key-ValuePresentationSection Header, Divider, Callout### Dashboard Builder

[](#dashboard-builder)

Build data dashboards with **9 panel types**: Metric, List, Time Series, Bar Chart, Line Chart, Pie Chart, Meter, Label, and Variable. Place panels on dashboards (12-column grid), collection pages, or record pages.

Panels support dynamic variables (`$CURRENT_USER`, `$NOW`, `{{custom}}`), aggregate functions (count, sum, avg, min, max), and interactive controls.

### Advanced Filtering

[](#advanced-filtering)

A visual filter builder with **23 operators**, nested AND/OR logic, dynamic variables, and saved filter presets. Operators adapt to data type — text fields get "contains" and "starts with", dates get "before" and "after", JSON fields get "contains any/all/none".

### REST API

[](#rest-api)

Auto-generated RESTful API with API key authentication, per-collection permissions, rate limiting, and OpenAPI documentation via Scramble.

### Conditional Logic

[](#conditional-logic)

Fields can be conditionally visible, required, or disabled based on form values, user permissions, page context, or custom resolvers — with cycle detection for safety.

### Multi-Tenancy

[](#multi-tenancy)

Full tenant isolation across all models. Every collection, record, dashboard, and API key is scoped to its tenant.

### Record Versioning &amp; Soft Deletes

[](#record-versioning--soft-deletes)

Optional snapshot-based version history with restore capability. Optional soft deletes to recover deleted records.

### Authorization

[](#authorization)

Policy-based access control with granular permissions for collections, records, fields, and API keys. Works with Spatie Permission or any Laravel Gate implementation.

Quick Start
-----------

[](#quick-start)

### Install

[](#install)

```
composer require flexpik/filament-studio
```

### Publish &amp; Migrate

[](#publish--migrate)

```
php artisan vendor:publish --tag="filament-studio-migrations"
php artisan migrate
```

### Register the Plugin

[](#register-the-plugin)

```
use Flexpik\FilamentStudio\FilamentStudioPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            FilamentStudioPlugin::make(),
        ]);
}
```

Visit your admin panel — you'll find a new **Studio** section in the sidebar.

### Configure (Optional)

[](#configure-optional)

```
FilamentStudioPlugin::make()
    ->navigationGroup('Content')
    ->enableVersioning()
    ->enableSoftDeletes()
    ->enableApi()
    ->fieldTypes([
        'currency' => CurrencyFieldType::class,
    ])
    ->panelTypes([
        CustomMapPanel::class,
    ]);
```

Publish the config for environment-level settings:

```
php artisan vendor:publish --tag="filament-studio-config"
```

Extending
---------

[](#extending)

### Custom Field Types

[](#custom-field-types)

Create field types by extending `AbstractFieldType`:

```
use Flexpik\FilamentStudio\FieldTypes\AbstractFieldType;
use Flexpik\FilamentStudio\Enums\EavCast;

class RatingFieldType extends AbstractFieldType
{
    protected static string $key = 'rating';
    protected static string $label = 'Rating';
    protected static string $icon = 'heroicon-o-star';
    protected static EavCast $eavCast = EavCast::Integer;
    protected static string $category = 'numeric';

    public function settingsSchema(): array { /* ... */ }
    public function toFilamentComponent(): Component { /* ... */ }
    public function toTableColumn(): ?Column { /* ... */ }
    public function toFilter(): ?Filter { /* ... */ }
}
```

### Lifecycle Hooks

[](#lifecycle-hooks)

React to events and modify generated schemas:

```
FilamentStudioPlugin::afterCollectionCreated(fn ($collection) => /* ... */);
FilamentStudioPlugin::afterFieldAdded(fn ($field) => /* ... */);

FilamentStudioPlugin::modifyFormSchema(fn (array $schema, $collection) => $schema);
FilamentStudioPlugin::modifyTableColumns(fn (array $columns, $collection) => $columns);
FilamentStudioPlugin::modifyQuery(fn ($query) => $query);
```

Architecture
------------

[](#architecture)

Filament Studio uses **EAV (Entity-Attribute-Value) storage** — data is stored across four core tables instead of creating a table per collection:

TablePurpose`studio_collections`Schema definitions (name, slug, settings)`studio_fields`Field definitions per collection (type, settings, validation)`studio_records`Record entries (UUID, collection, tenant)`studio_values`Typed data storage (text, integer, decimal, boolean, datetime, JSON columns)This approach enables runtime schema changes without migrations while preserving native database sorting and type safety through typed storage columns.

Documentation
-------------

[](#documentation)

GuideDescription[Installation](docs/installation.md)Requirements, setup, and verification[Configuration](docs/configuration.md)Config file, plugin options, feature flags[Field Types](docs/field-types.md)All 33 built-in types, EAV storage, field settings[Dashboards &amp; Panels](docs/dashboards.md)Dashboard builder, 9 panel types, variables[Filtering](docs/filtering.md)23 operators, filter trees, saved filters[REST API](docs/api.md)Endpoints, authentication, permissions, rate limiting[Conditional Logic](docs/conditional-logic.md)Dynamic visibility, required, and disabled states[Authorization](docs/authorization.md)Policies, permissions, Spatie integration[Multi-Tenancy](docs/multi-tenancy.md)Tenant scoping, lifecycle hooks[Record Versioning](docs/versioning.md)Snapshots, restore, soft deletes[Hooks &amp; Events](docs/hooks.md)Lifecycle hooks, schema modification[Custom Field Types](docs/extending/custom-field-types.md)Building your own field types[Custom Panel Types](docs/extending/custom-panel-types.md)Building your own dashboard panelsRequirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11+
- Filament v5

Testing
-------

[](#testing)

```
vendor/bin/pest
```

Changelog
---------

[](#changelog)

See [CHANGELOG](CHANGELOG.md) for recent changes.

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

[](#contributing)

See [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover a security vulnerability, please send an email to the maintainers. All security vulnerabilities will be promptly addressed.

Credits
-------

[](#credits)

- [Flexpik](https://github.com/flexpik)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). See [LICENSE](LICENSE.md) for details.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance90

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

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

Unknown

Total

1

Last Release

46d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/268365064?v=4)[flexpik](/maintainers/flexpik)[@flexpik](https://github.com/flexpik)

---

Top Contributors

[![serhii-f8](https://avatars.githubusercontent.com/u/22273976?v=4)](https://github.com/serhii-f8 "serhii-f8 (4 commits)")[![flexpik](https://avatars.githubusercontent.com/u/268365064?v=4)](https://github.com/flexpik "flexpik (1 commits)")

---

Tags

laravelcrudfilamenteavData Managerdynamic-models

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/flexpik-filament-studio/health.svg)

```
[![Health](https://phpackages.com/badges/flexpik-filament-studio/health.svg)](https://phpackages.com/packages/flexpik-filament-studio)
```

###  Alternatives

[awcodes/filament-quick-create

Plugin for Filament Admin that adds a dropdown menu to the header to quickly create new items.

246177.6k7](/packages/awcodes-filament-quick-create)[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[inerba/filament-db-config

A Filament plugin for database-backed application settings and editable content, with caching and easy page generation.

329.1k](/packages/inerba-filament-db-config)[caresome/filament-neobrutalism-theme

A neobrutalism theme for FilamentPHP admin panels

303.2k](/packages/caresome-filament-neobrutalism-theme)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

233.8k](/packages/andreia-filament-ui-switcher)[craft-forge/filament-language-switcher

Zero-config language switcher for Filament admin panels. Automatically scans available translations, renders dropdown with country flags, persists selection via sessions.

1016.4k](/packages/craft-forge-filament-language-switcher)

PHPackages © 2026

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