| Package Data | |
|---|---|
| Maintainer Username: | ManukMinasyan |
| Maintainer Contact: | manuk.minasyan1@gmail.com (manukminasyan) |
| Package Create Date: | 2025-03-20 |
| Package Last Update: | 2026-02-11 |
| Home Page: | https://relaticle.github.io/flowforge/ |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2026-02-12 03:00:03 |
| Package Statistics | |
|---|---|
| Total Downloads: | 31,686 |
| Monthly Downloads: | 8,714 |
| Daily Downloads: | 425 |
| Total Stars: | 368 |
| Total Watchers: | 6 |
| Total Forks: | 40 |
| Total Open Issues: | 1 |
Transform any Laravel model into a production-ready drag-and-drop Kanban board.
Works with Filament admin panels and standalone Livewire applications.
composer require relaticle/flowforge
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
Visual form builder for all your public-facing forms. Learn more →
Let users add custom fields to any model without code changes. Learn more →
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License. See LICENSE.md for details.