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(3mo ago)00MITPHPPHP ^8.2|^8.3|^8.4

Since Feb 18Pushed 2mo 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 1mo ago

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

37

—

LowBetter than 83% of packages

Maintenance82

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity51

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

90d 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

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

254255.2k6](/packages/croustibat-filament-jobs-monitor)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)

PHPackages © 2026

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