PHPackages                             vodafoneziggonl/filament-multi-widget - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. vodafoneziggonl/filament-multi-widget

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

vodafoneziggonl/filament-multi-widget
=====================================

A Filament widget that encompasses multiple widgets.

5.0.0(5mo ago)2225.4k↓40.3%3MITPHPPHP ^8.2CI passing

Since Jul 22Pushed 5mo ago3 watchersCompare

[ Source](https://github.com/VodafoneZiggoNL/filament-multi-widget)[ Packagist](https://packagist.org/packages/vodafoneziggonl/filament-multi-widget)[ Docs](https://github.com/vodafoneziggonl/filament-multi-widget)[ RSS](/packages/vodafoneziggonl-filament-multi-widget/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (3)Dependencies (3)Versions (9)Used By (0)

[![GitHub repository cover image](.github/cover.png)](.github/cover.png)

Combine multiple widgets into one
=================================

[](#combine-multiple-widgets-into-one)

[![Latest Version](https://camo.githubusercontent.com/c14057c338d7c8965fb84e04743be5188b415f327bc4e0f149f4d31a71011cf2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f766f6461666f6e657a6967676f6e6c2f66696c616d656e742d6d756c74692d7769646765742e7376673f7374796c653d666c61742d737175617265)](https://github.com/vodafoneziggonl/filament-multi-widget/releases)[![Total Downloads](https://camo.githubusercontent.com/0f7c676526a900c1fc38c17839723fbebfbddff4588b72f590c27086d323d5be/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f766f6461666f6e657a6967676f6e6c2f66696c616d656e742d6d756c74692d7769646765742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vodafoneziggonl/filament-multi-widget)

This package adds a new type of widget to your Filament application. The Multi Widget allows you to combine multiple widgets into a single widget, that can be switched using tabs. This plugin helps clean up your Filament dashboard.

[![Demo](.github/filament-multi-widget-demo.gif)](.github/filament-multi-widget-demo.gif)

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

[](#installation)

This package can be installed via Composer:

```
composer require vodafoneziggonl/filament-multi-widget
```

Package versionSupported Filament version**5.x**^5.03.x^4.0Usage
-----

[](#usage)

Create a new Multi Widget by extending the `VodafoneZiggoNL\MultiWidget\MultiWidget` class.

```
// app/Filament/Widgets/UserMultiWidget.php

class UserMultiWidget extends MultiWidget
{
    public array $widgets = [
        MySubmittedComments::class,
        MySubmittedFeedback::class,
        MySubscriptions::class,
    ];
}
```

The `$widgets` property contains the classes of all the widgets that should be added to your Multi Widget. These are normal [Filament widgets](https://filamentphp.com/docs/2.x/admin/resources/widgets) that you created.
The Multi Widget above will now render as follows:

[![Example multi widget](.github/usermultiwidget-example.png)](.github/usermultiwidget-example.png)

In case your widget is displayed a second time on the dashboard, make sure the widget is not automatically added to the dashboard again. Check the `discoverWidgets()` function in your `adminPanelProvider.php` file.

Using custom labels for tabs
----------------------------

[](#using-custom-labels-for-tabs)

By default, the label name is generated based on the class name. If you want to customize the label for the tab, add the `getDisplayName()` method to your widget.

```
// app/Filament/Widgets/ProductSales.php

class ProductSales extends BaseWidget
{
   // Some widget content...

    public function getDisplayName(): string {
        return "Custom name";
    }
}
```

Persist tabs in session
-----------------------

[](#persist-tabs-in-session)

To persist the tabs in the user's session, use the shouldPersistMultiWidgetTabsInSession() method:

```
// app/Filament/Widgets/UserMultiWidget.php

class UserMultiWidget extends MultiWidget
{
    public array $widgets = [
        MySubmittedComments::class,
        MySubmittedFeedback::class,
        MySubscriptions::class,
    ];

    public function shouldPersistMultiWidgetTabsInSession(): bool
    {
        return true;
    }
}
```

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

[](#contributing)

Please see [CONTRIBUTING](https://github.com/vodafoneziggonl/.github/blob/main/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [musa11971](https://github.com/musa11971)
- [Jehizkia](https://github.com/jehizkia)
- [All Contributors](../../contributors)

License
-------

[](#license)

The Apache License 2.0. Please see [License File](LICENSE.md) for more information.

###  Health Score

48

—

FairBetter than 93% of packages

Maintenance72

Regular maintenance activity

Popularity39

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

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

Recently: every ~47 days

Total

6

Last Release

158d ago

Major Versions

2.x-dev → 3.0.02025-09-11

3.x-dev → 4.x-dev2025-11-08

4.x-dev → 5.0.02026-01-27

PHP version history (2 changes)2.0.2PHP ^8.0

3.0.0PHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/21341801?v=4)[Musa](/maintainers/musa11971)[@musa11971](https://github.com/musa11971)

---

Top Contributors

[![musa11971](https://avatars.githubusercontent.com/u/21341801?v=4)](https://github.com/musa11971 "musa11971 (8 commits)")[![Parsifal-M](https://avatars.githubusercontent.com/u/13601053?v=4)](https://github.com/Parsifal-M "Parsifal-M (4 commits)")[![andreia](https://avatars.githubusercontent.com/u/38911?v=4)](https://github.com/andreia "andreia (1 commits)")[![Jehizkia](https://avatars.githubusercontent.com/u/8775667?v=4)](https://github.com/Jehizkia "Jehizkia (1 commits)")

---

Tags

filamentfilament-pluginfilamentphplaravelphpwidgetlaravelfilamentmulti-widgetVodafoneZiggo

### Embed Badge

![Health badge](/badges/vodafoneziggonl-filament-multi-widget/health.svg)

```
[![Health](https://phpackages.com/badges/vodafoneziggonl-filament-multi-widget/health.svg)](https://phpackages.com/packages/vodafoneziggonl-filament-multi-widget)
```

###  Alternatives

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k1](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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