PHPackages                             dbflowlabs/filament - 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. [Database &amp; ORM](/categories/database)
4. /
5. dbflowlabs/filament

ActiveLibrary[Database &amp; ORM](/categories/database)

dbflowlabs/filament
===================

Standard Filament integration package for DBFlow Core.

0.1.0-alpha.1(today)00MITPHPPHP ^8.3CI passing

Since Jun 26Pushed todayCompare

[ Source](https://github.com/dbflow-labs/dbflow-filament)[ Packagist](https://packagist.org/packages/dbflowlabs/filament)[ Docs](https://github.com/dbflow-labs/dbflow-filament)[ RSS](/packages/dbflowlabs-filament/feed)WikiDiscussions main Synced today

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

DBFlow Filament
===============

[](#dbflow-filament)

[![Latest Version on Packagist](https://camo.githubusercontent.com/48df414f93d12a79b7e9b3665b33caf4dd123a5fd92069e0c797c37a9e545c94/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6462666c6f776c6162732f66696c616d656e742e737667)](https://packagist.org/packages/dbflowlabs/filament)[![Total Downloads](https://camo.githubusercontent.com/3a246e25a0a4bfee874b22f6cc78d7875d7afc0cc7480edd3b4c72728e4718b4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6462666c6f776c6162732f66696c616d656e742e737667)](https://packagist.org/packages/dbflowlabs/filament)[![License: MIT](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE)[![PHP](https://camo.githubusercontent.com/76d2504e4f304c14866dd7295641dd6812652d93a1848a27fc8e2a08d6732731/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d382e332532422d3737376262342e737667)](composer.json)[![Laravel](https://camo.githubusercontent.com/354f6734d1b97e7b34c93c5345e248f4ecded77f257b73e903d88d426118b1b7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d31332e782d6666326432302e737667)](composer.json)[![Filament](https://camo.githubusercontent.com/accf4287724e2e0d6dbe34aa9a4bca3fd59ac0eee5dc63d1ab126c78b4d35c49/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f66696c616d656e742d352e782d6635396530622e737667)](composer.json)

**Standard Filament integration for DBFlow Core.**

DBFlow Filament adds workflow tasks, workflow instances, audit timelines, and form-based workflow definition management to Laravel admin panels built with [Filament](https://filamentphp.com/).

This package is the **standard UI layer** for `dbflowlabs/core`. It intentionally ships read-only runtime surfaces and form-based definition editing. Visual workflow builders, drag-and-drop canvases, and advanced authoring experiences live in the separate commercial `dbflowlabs/filament-pro` package.

Package overview
----------------

[](#package-overview)

ItemValueComposer name`dbflowlabs/filament`Namespace`DbflowLabs\Filament`First release`0.1.0-alpha.1`LicenseMITAuthorBaron Wang Core dependency[dbflowlabs/core](https://packagist.org/packages/dbflowlabs/core) `^0.1.0-alpha.1`Filament`^5.6`PHP`^8.3`Host frameworkLaravel 13.xWhat you get
------------

[](#what-you-get)

SurfaceDescription**My Workflow Tasks**Pending workflow assignments for the signed-in user, with approve and reject actions**Workflow Instances**Searchable runtime workflow instance list**Workflow Instance Detail**Read-only workflow instance detail page with audit timeline**Workflow Definitions**Filament resource for draft CRUD, validation, and publishing**Extension Contracts**Host adapters for permissions, labels, status badges, users, and assignee optionsHosts opt in explicitly. This package does **not** auto-register Filament pages or resources during `boot()`.

Requirements
------------

[](#requirements)

- PHP `^8.3`
- Laravel 13.x
- Filament `^5.6`
- [dbflowlabs/core](https://packagist.org/packages/dbflowlabs/core) `^0.1.0-alpha.1`
- Core database migrations applied before using the workflow UI

Installation
------------

[](#installation)

Install the package with Composer:

```
composer require "dbflowlabs/filament:0.1.0-alpha.1"
```

`dbflowlabs/core` is installed automatically.

For ongoing alpha updates after the first pin:

```
composer require "dbflowlabs/filament:^0.1.0-alpha.1"
```

To pin Core explicitly:

```
composer require "dbflowlabs/core:0.1.0-alpha.1"
```

After installation, confirm that `composer.lock` records the expected alpha version and resolved commit hash.

### Publish assets

[](#publish-assets)

Publish the package configuration:

```
php artisan vendor:publish --tag=dbflow-filament-config
```

Publish views if you want to customize the UI:

```
php artisan vendor:publish --tag=dbflow-filament-views
```

Optional translations:

```
php artisan vendor:publish --tag=dbflow-filament-translations
```

### Run Core migrations

[](#run-core-migrations)

Follow the [dbflowlabs/core](https://github.com/dbflow-labs/dbflow-core) installation guide, then run migrations:

```
php artisan migrate
```

DBFlow Filament uses the runtime tables provided by DBFlow Core.

Register with Filament
----------------------

[](#register-with-filament)

Register DBFlow Filament from your Filament `PanelProvider`:

```
