PHPackages                             relaticle/flowforge - 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. relaticle/flowforge

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

relaticle/flowforge
===================

Flowforge is a lightweight Kanban board package for Filament that works with existing Eloquent models.

v4.0.8(2mo ago)39246.7k↑14.4%45[1 PRs](https://github.com/Relaticle/flowforge/pulls)1MITPHPPHP ^8.3CI passing

Since Mar 29Pushed 1mo ago7 watchersCompare

[ Source](https://github.com/Relaticle/flowforge)[ Packagist](https://packagist.org/packages/relaticle/flowforge)[ Docs](https://github.com/relaticle/flowforge)[ GitHub Sponsors](https://github.com/Relaticle)[ RSS](/packages/relaticle-flowforge/feed)WikiDiscussions 4.x Synced 1mo ago

READMEChangelog (10)Dependencies (31)Versions (63)Used By (1)

Flowforge
=========

[](#flowforge)

[![Flowforge Kanban Board](art/preview.png)](art/preview.png)

Transform any Laravel model into a production-ready drag-and-drop Kanban board.

**Works with Filament admin panels and standalone Livewire applications.**

[![Latest Version](https://camo.githubusercontent.com/e582bf905f4aef1b6b8a22332a0ed74da95409a3f47f8581120d19c80e09ad73/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72656c617469636c652f666c6f77666f7267652e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/relaticle/flowforge)[![Total Downloads](https://camo.githubusercontent.com/d395489b70bbf7dd0a628171ca8c6f9f1091184a00e616e8e00e5f18929cf8e9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72656c617469636c652f666c6f77666f7267652e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/relaticle/flowforge)[![PHP 8.3+](https://camo.githubusercontent.com/e55cf84d8926decfa8ec3b783275d90031a20fc021b737165b7da5c2299227b7/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d382e332532422d626c75652e7376673f7374796c653d666f722d7468652d6261646765)](https://php.net)[![Laravel 12+](https://camo.githubusercontent.com/41837763174078789df623560472d8080f475bfdbb42fff80e94fa365889ff3a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d31322532422d7265642e7376673f7374796c653d666f722d7468652d6261646765)](https://laravel.com)[![Tests](https://camo.githubusercontent.com/3118c2266edd783b47b6ca27dbb97e4af0f8d8f033de30de1ab7d66795244bfe/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f72656c617469636c652f666c6f77666f7267652f74657374732e796d6c3f6272616e63683d342e78267374796c653d666f722d7468652d6261646765266c6162656c3d7465737473)](https://github.com/relaticle/flowforge/actions)

Features
--------

[](#features)

- **3 Integration Patterns** - Works with Filament Pages, Resources, or standalone Livewire components
- **Enterprise-Scale Performance** - Cursor-based pagination handles unlimited cards with intelligent loading
- **Rich Card Schemas** - Filament Schema builder creates complex card layouts with forms and components
- **Smart Position Management** - Advanced ranking algorithm with conflict resolution and repair commands
- **Optimistic UI Experience** - Instant visual feedback with loading states and smooth interactions
- **Native Filament Integration** - Deep table system integration for filters, search, and actions

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

[](#requirements)

- **PHP:** 8.3+
- **Laravel:** 12+
- **Livewire:** 4.x+
- **Filament:** 5.x+
- **ext-bcmath:** Required for position calculations
- **Database:** MySQL, PostgreSQL, SQLite, SQL Server, MariaDB

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

[](#installation)

```
composer require relaticle/flowforge
```

Usage
-----

[](#usage)

**Standalone Livewire** (any Laravel application):

```
use Relaticle\Flowforge\Concerns\InteractsWithBoard;

class TaskBoard extends Component implements HasBoard
{
    use InteractsWithBoard;

    public function board(Board $board): Board
    {
        return $board
            ->query(Task::query())
            ->columnIdentifier('status')
            ->positionIdentifier('position')
            ->columns([
                Column::make('todo')->label('To Do')->color('gray'),
                Column::make('in_progress')->label('In Progress')->color('blue'),
                Column::make('completed')->label('Completed')->color('green'),
            ]);
    }
}
```

**Filament Admin Panel**:

```
php artisan flowforge:make-board TaskBoard --model=Task
```

**[View Complete Documentation →](https://relaticle.github.io/flowforge/)**

Our Ecosystem
-------------

[](#our-ecosystem)

### FilaForms

[](#filaforms)

[![](https://camo.githubusercontent.com/7145ea0049d6121305adc5b88794634a0fe1c853b746ec75d44b44f4c0ac481d/68747470733a2f2f66696c61666f726d732e6170702f696d672f6f672d696d6167652e706e67)](https://filaforms.app/)

Visual form builder for all your public-facing forms. [Learn more →](https://filaforms.app)

### Custom Fields

[](#custom-fields)

[![](https://github.com/Relaticle/custom-fields/raw/2.x/art/preview.png)](https://relaticle.github.io/custom-fields)

Let users add custom fields to any model without code changes. [Learn more →](https://relaticle.github.io/custom-fields)

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

[](#contributing)

Contributions are welcome! Please feel free to submit a Pull Request.

- [Contributing Guidelines](.github/CONTRIBUTING.md) - How to contribute
- [Testing Examples](tests/Feature/) - Production-ready test patterns

License
-------

[](#license)

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

###  Health Score

62

—

FairBetter than 99% of packages

Maintenance89

Actively maintained with recent releases

Popularity52

Moderate usage in the ecosystem

Community29

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 94% 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 ~7 days

Total

50

Last Release

53d ago

Major Versions

v3.0.1 → v4.0.22026-01-28

v3.0.2 → v4.0.32026-01-29

2.x-dev → v4.0.42026-03-01

v3.0.3 → v4.0.62026-03-15

3.x-dev → v4.0.72026-03-16

PHP version history (3 changes)0.1.1PHP ^8.1

0.1.2PHP ^8.2

v2.0.0-beta1PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/db389fc77f851d2adb17e43eaaecf1b22d95a16ec94af3346b3ee0e4130fd31f?d=identicon)[ManukMinasyan](/maintainers/ManukMinasyan)

---

Top Contributors

[![ManukMinasyan](https://avatars.githubusercontent.com/u/2556185?v=4)](https://github.com/ManukMinasyan "ManukMinasyan (442 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (13 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")[![mustafa-online](https://avatars.githubusercontent.com/u/5323832?v=4)](https://github.com/mustafa-online "mustafa-online (2 commits)")[![felipeArnold](https://avatars.githubusercontent.com/u/44820260?v=4)](https://github.com/felipeArnold "felipeArnold (1 commits)")[![jcxm360](https://avatars.githubusercontent.com/u/9924752?v=4)](https://github.com/jcxm360 "jcxm360 (1 commits)")[![michaelnjuguna](https://avatars.githubusercontent.com/u/74660393?v=4)](https://github.com/michaelnjuguna "michaelnjuguna (1 commits)")[![OccTherapist](https://avatars.githubusercontent.com/u/28587659?v=4)](https://github.com/OccTherapist "OccTherapist (1 commits)")[![vasilGerginski](https://avatars.githubusercontent.com/u/1145019?v=4)](https://github.com/vasilGerginski "vasilGerginski (1 commits)")[![AtemD](https://avatars.githubusercontent.com/u/17710167?v=4)](https://github.com/AtemD "AtemD (1 commits)")[![xx1196](https://avatars.githubusercontent.com/u/50302178?v=4)](https://github.com/xx1196 "xx1196 (1 commits)")[![csh-tech](https://avatars.githubusercontent.com/u/232831869?v=4)](https://github.com/csh-tech "csh-tech (1 commits)")[![eduardoribeirodev](https://avatars.githubusercontent.com/u/184874831?v=4)](https://github.com/eduardoribeirodev "eduardoribeirodev (1 commits)")[![elmergustavo](https://avatars.githubusercontent.com/u/42653934?v=4)](https://github.com/elmergustavo "elmergustavo (1 commits)")

---

Tags

admin-paneldrag-and-dropeloquentfilamentfilament-pluginkanbankanban-boardlaravellaravel-packagelivewireproductivityproject-managementlaravelRelaticleflowforge

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/relaticle-flowforge/health.svg)

```
[![Health](https://phpackages.com/badges/relaticle-flowforge/health.svg)](https://phpackages.com/packages/relaticle-flowforge)
```

###  Alternatives

[filament/filament

A collection of full-stack components for accelerated Laravel app development.

3722.7M2.4k](/packages/filament-filament)[relaticle/custom-fields

User Defined Custom Fields for Laravel Filament

15828.6k](/packages/relaticle-custom-fields)[redberry/page-builder-plugin

Page builder plugin for filamentphp admin panel to build pages using blocks.

242.8k](/packages/redberry-page-builder-plugin)[solution-forest/filament-simplelightbox

This is my package filament-simplelightbox

6281.0k1](/packages/solution-forest-filament-simplelightbox)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)[defstudio/filament-searchable-input

A searchable autocomplete input for Filament forms

3212.4k](/packages/defstudio-filament-searchable-input)

PHPackages © 2026

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