A Filament plugin for FilamentTabbedDashboard.
alessandro-nuunes/filament-tabbed-dashboard is a Laravel package for a filament plugin for filamenttabbeddashboard..
It currently has 0 GitHub stars and 0 downloads on Packagist (latest version v1.0.1).
Install it with composer require alessandro-nuunes/filament-tabbed-dashboard.
Discover more Laravel packages by alessandro-nuunes
or browse all Laravel packages to compare alternatives.
Last updated
Tabbed dashboard for Filament via a trait. No config; uses Filament’s default components.

composer require alessandro-nuunes/filament-tabbed-dashboard
The ServiceProvider is auto-registered. Registering the plugin on the panel is optional.
In your Dashboard (e.g. app/Filament/Admin/Pages/Dashboard.php):
HasTabbedDashboard trait.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().
| Key | Required | Description |
|----------------|----------|--------------------------------|
| id | yes | Unique identifier |
| label | yes | Tab label |
| widgets | yes | Array of Widget classes |
| visible | no | true (default) or false |
| icon | no | Heroicon name |
| badge | no | Number, string, or callable |
| badgeColor | no | e.g. 'primary', 'warning' |
| badgeTooltip | no | Badge tooltip |
Override these methods on your Dashboard:
| Method | Default | Effect |
|----------------------------|-------------|-------------------------------------|
| getTabbedTabsContained() | false | true = tabs inside a box |
| getTabbedTabsStyle() | 'default' | 'default', 'pills', or 'boxed' |
| getTabbedTabsShowIcons() | true | false = hide icons |
| getTabbedTabsVertical() | false | true = vertical tabs |
For 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.
MIT.