PHPackages                             alessandro-nuunes/filament-tabbed-dashboard - 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. alessandro-nuunes/filament-tabbed-dashboard

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

alessandro-nuunes/filament-tabbed-dashboard
===========================================

A Filament plugin for FilamentTabbedDashboard.

v1.0.1(4mo ago)00MITPHPPHP ^8.2|^8.3|^8.4

Since Feb 18Pushed 4mo agoCompare

[ Source](https://github.com/alessandronuunes/filament-tabbed-dashboard)[ Packagist](https://packagist.org/packages/alessandro-nuunes/filament-tabbed-dashboard)[ Docs](https://github.com/alessandro-nuunes/filament-tabbed-dashboard)[ GitHub Sponsors](https://github.com/alessandro-nuunes)[ RSS](/packages/alessandro-nuunes-filament-tabbed-dashboard/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (8)Versions (2)Used By (0)

Filament Tabbed Dashboard
=========================

[](#filament-tabbed-dashboard)

Tabbed dashboard for Filament via a trait. No config; uses Filament’s default components.

[![Members Management Interface](screenshots/tabbed.jpg)](screenshots/tabbed.jpg)

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11 or 12
- Filament 4 or 5

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

[](#installation)

```
composer require alessandro-nuunes/filament-tabbed-dashboard
```

The ServiceProvider is auto-registered. Registering the plugin on the panel is optional.

Usage
-----

[](#usage)

In your Dashboard (e.g. `app/Filament/Admin/Pages/Dashboard.php`):

1. Use the `HasTabbedDashboard` trait.
2. Implement `getTabDefinitions()` with your tabs.

```
use AlessandroNuunes\FilamentTabbedDashboard\HasTabbedDashboard;
use Filament\Pages\Dashboard;

class Dashboard extends Dashboard
{
    use HasTabbedDashboard;

    public function getTabDefinitions(): array
    {
        return [
            [
                'id'      => 'overview',
                'label'   => 'Overview',
                'icon'    => 'heroicon-o-home',
                'widgets' => [StatsOverview::class],
                'visible' => true,
            ],
            [
                'id'      => 'analytics',
                'label'   => 'Analytics',
                'icon'    => 'heroicon-o-chart-bar',
                'widgets' => [OtherWidget::class],
                'visible' => true,
            ],
        ];
    }
}
```

The trait provides the package view. Optionally extend `AlessandroNuunes\FilamentTabbedDashboard\Pages\TabbedDashboard` and implement only `getTabDefinitions()`.

### Tab structure

[](#tab-structure)

KeyRequiredDescription`id`yesUnique identifier`label`yesTab label`widgets`yesArray of Widget classes`visible`no`true` (default) or `false``icon`noHeroicon name`badge`noNumber, string, or callable`badgeColor`noe.g. `'primary'`, `'warning'``badgeTooltip`noBadge tooltipTab appearance (optional)
-------------------------

[](#tab-appearance-optional)

Override these methods on your Dashboard:

MethodDefaultEffect`getTabbedTabsContained()``false``true` = tabs inside a box`getTabbedTabsStyle()``'default'``'default'`, `'pills'`, or `'boxed'``getTabbedTabsShowIcons()``true``false` = hide icons`getTabbedTabsVertical()``false``true` = vertical tabsFor `pills` or `boxed`, the plugin only adds the CSS class `fi-tabbed-dashboard--{style}`. To change the look, add CSS in your theme (e.g. `resources/css/filament/admin/theme.css`). Without that CSS, tabs use Filament’s default style.

License
-------

[](#license)

MIT.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance75

Regular maintenance activity

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

136d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4d53fc7e3f13c6a03262261f5f6e670d8ae140b90878dd51eca3d18d27ab7423?d=identicon)[alessandronuunes](/maintainers/alessandronuunes)

---

Top Contributors

[![alessandronuunes](https://avatars.githubusercontent.com/u/13227884?v=4)](https://github.com/alessandronuunes "alessandronuunes (4 commits)")

---

Tags

laravelfilamentfilament-plugin

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/alessandro-nuunes-filament-tabbed-dashboard/health.svg)

```
[![Health](https://phpackages.com/badges/alessandro-nuunes-filament-tabbed-dashboard/health.svg)](https://phpackages.com/packages/alessandro-nuunes-filament-tabbed-dashboard)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.6k3](/packages/defstudio-telegraph)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274325.8k8](/packages/croustibat-filament-jobs-monitor)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[nativephp/mobile

NativePHP for Mobile

1.1k75.1k91](/packages/nativephp-mobile)

PHPackages © 2026

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