© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
14 replies
Mina

Is there a way to group stat widgets on admin panel?

Hi, I have 4 different widgets that I'm fetching in my AdminPanelProvider. The thing is, i hate the way they look. Is there a way to make them all in one row? Here's the code:
->widgets([
                ShopOverview::class,
                FunnelOverview::class,
                FunnelOverview::make([
                    'label' => 'Total Draft Funnels',
                    'status' => \App\Models\v1\Funnel::STATUSES[FunnelStatus::DRAFT],
                ]),
                FunnelOverview::make([
                    'label' => 'Total Active Funnels',
                    'status' =>  \App\Models\v1\Funnel::STATUSES[FunnelStatus::ACTIVE],
                ]),
                FunnelOverview::make([
                    'label' => 'Total Paused Funnels',
                    'status' =>  \App\Models\v1\Funnel::STATUSES[FunnelStatus::PAUSED],
                ]),
                ChargeOverview::make([
                    'label' => 'Total Recurring Charges',
                    'type' =>  'RECURRING',
                ]),
                ChargeOverview::make([
                    'label' => 'Total Usage Charges',
                    'type' =>  'USAGE',
                ]),
->widgets([
                ShopOverview::class,
                FunnelOverview::class,
                FunnelOverview::make([
                    'label' => 'Total Draft Funnels',
                    'status' => \App\Models\v1\Funnel::STATUSES[FunnelStatus::DRAFT],
                ]),
                FunnelOverview::make([
                    'label' => 'Total Active Funnels',
                    'status' =>  \App\Models\v1\Funnel::STATUSES[FunnelStatus::ACTIVE],
                ]),
                FunnelOverview::make([
                    'label' => 'Total Paused Funnels',
                    'status' =>  \App\Models\v1\Funnel::STATUSES[FunnelStatus::PAUSED],
                ]),
                ChargeOverview::make([
                    'label' => 'Total Recurring Charges',
                    'type' =>  'RECURRING',
                ]),
                ChargeOverview::make([
                    'label' => 'Total Usage Charges',
                    'type' =>  'USAGE',
                ]),
Screenshot_2024-03-11_at_14.34.19.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Is there a way to split Widgets?
FilamentFFilament / ❓┊help
3y ago
Is there an easy way to group dashboard widgets into tabs?
FilamentFFilament / ❓┊help
2y ago
Add filters to stat widgets
FilamentFFilament / ❓┊help
2y ago
How to group widgets?
FilamentFFilament / ❓┊help
2y ago