Clusters
CommunityPlugin that allows you to visually cluster multiple fields together.
Author:
Guava
Package health
BetaAutomated checks of this plugin's Composer package
15 checks
- Failed: GitHub Actions pinned to SHA — View details on Plumb
- Skipped: GitLab CI includes pinned to SHA
- Passed: Open security advisories
- Failed: Dependabot PR responsiveness — Stale Dependabot PRs: oldest general PR is 1000 days old. View details on Plumb
- Skipped: Renovate MR responsiveness
- Failed: Dependabot or Renovate configured — No dependency updater configuration found. View details on Plumb
- Skipped: Dependency update cooldown configured
- Passed: Provides a security policy
- Failed: Abandoned or archived — Repository archived on GitHub. View details on Plumb
- Failed: Commit and release recency — Inactive: last commit 516 days ago; last release 516 days ago. View details on Plumb
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
-
Warning:
Current Laravel version supported
—
Package does not co-install with current Laravel
13.0; the newest co-installable line is12.0, which still receives active support but is not the current stable. -
Passed:
Current PHP version supported
—
Constraint
^8.1supports current PHP8.5. - Skipped: Current Symfony version supported
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation

Filament Clusters allows you to visually cluster multiple fields together.
Functionality wise it is similar to the Group component except that the fields look visually as one, which is useful for tighly coupled form fields, such as a currency and amount which only make sense together.
#Showcase


#Support us
Your support is key to the continual advancement of our plugin. We appreciate every user who has contributed to our journey so far.
While our plugin is available for all to use, if you are utilizing it for commercial purposes and believe it adds significant value to your business, we kindly ask you to consider supporting us through GitHub Sponsors. This sponsorship will assist us in continuous development and maintenance to keep our plugin robust and up-to-date. Any amount you contribute will greatly help towards reaching our goals. Join us in making this plugin even better and driving further innovation.
#Installation
You can install the package via composer:
composer require guava/filament-clusters
#Usage
It's simple as:
use Guava\FilamentClusters\Forms\Cluster;
Cluster::make([
// Your schema
]);
For example for a currency and amount cluster:
use Guava\FilamentClusters\Forms\Cluster;
Cluster::make([
\Filament\Forms\Components\Select::make('currency')
->options(['EUR', 'USD']),
\Filament\Forms\Components\TextInput::make('amount')
->numeric()
->required(),
]),
#Customization
You can add a label, hint, helper text or actions to your Cluster:
use Guava\FilamentClusters\Forms\Cluster;
Cluster::make([
// Schema
])
->label('My label')
->hint('Useful hint')
->helperText('Help when you\'re stuck');
#Grid
By default, the cluster automatically distributes the space among each child component. You can however customize it using columns and columnSpan for each child, just like you're used to from Filament:
use Guava\FilamentClusters\Forms\Cluster;
Cluster::make([
// Schema
])->columns(5);
#Vertical Clusters
To create a vertical clusters, you simply need set the columns of the Cluster to 1:
Cluster::make([
// Schema
])->columns(1);
#Different Breakpoints
The breakpoints use the same system as Filament`s columns, so you can customize each breakpoint by passing in an array:
Cluster::make([
// Schema
])->columns([
'default' => 1,
'lg' => 3,
]);
#Contributing
Please see CONTRIBUTING for details.
#Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
#Credits
#License
The MIT License (MIT). Please see License File for more information.
The author
We are a web development company based in Pilsen, Czech Republic. We primarily use the TALL stack for web development.
From the same author
Icon Picker
Adds an icon picker field and column for your filament panel and form builder.
Author:
Guava
Icon Select Column
Adds an Icon Select column for your filament tables.
Author:
Guava
MCP
Turn your filament panel(s) into an MCP server with ease and control your filament panels with your favourite AI agents. Fully configurable, secure, supports public and authenticated resources, custom tools and more.
Author:
Guava
Nested Resources
Adds support for nested resources
Author:
Guava
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle