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. vodafoneziggonl/filament-multi-widget

ActiveLibrary

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

A Filament widget that encompasses multiple widgets.

5.0.0(3mo ago)2017.2k—1.6%4MITPHPPHP ^8.2CI passing

Since Jul 22Pushed 3mo 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 1mo 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

50

—

FairBetter than 96% of packages

Maintenance79

Regular maintenance activity

Popularity38

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

111d 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://www.gravatar.com/avatar/3c3104e44e9879242659fa0c6717fa6d01be9fcbb90a33d0c49c1ea1c6348332?d=identicon)[musa11971](/maintainers/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

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[guava/filament-modal-relation-managers

Allows you to embed relation managers inside filament modals.

7565.0k4](/packages/guava-filament-modal-relation-managers)[mwguerra/filemanager

A full-featured file manager package for Laravel and Filament v5 with dual operating modes, drag-and-drop uploads, S3/MinIO support, and comprehensive security features.

718.5k1](/packages/mwguerra-filemanager)[agencetwogether/hookshelper

Simple plugin to toggle display hooks available in current page.

2312.7k](/packages/agencetwogether-hookshelper)[tapp/filament-webhook-client

Add a Filament resource and a policy for Spatie Webhook client

1120.2k](/packages/tapp-filament-webhook-client)

PHPackages © 2026

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