alessandro-nuunes/filament-tabbed-dashboard
Composer 安装命令:
composer require alessandro-nuunes/filament-tabbed-dashboard
包简介
A Filament plugin for FilamentTabbedDashboard.
README 文档
README
Tabbed dashboard for Filament via a trait. No config; uses Filament’s default components.
Requirements
- PHP 8.2+
- Laravel 11 or 12
- Filament 4 or 5
Installation
composer require alessandro-nuunes/filament-tabbed-dashboard
The ServiceProvider is auto-registered. Registering the plugin on the panel is optional.
Usage
In your Dashboard (e.g. app/Filament/Admin/Pages/Dashboard.php):
- Use the
HasTabbedDashboardtrait. - 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
| 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 |
Tab appearance (optional)
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.
License
MIT.
alessandro-nuunes/filament-tabbed-dashboard 适用场景与选型建议
alessandro-nuunes/filament-tabbed-dashboard 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「filament」 「filament-plugin」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 alessandro-nuunes/filament-tabbed-dashboard 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 alessandro-nuunes/filament-tabbed-dashboard 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 alessandro-nuunes/filament-tabbed-dashboard 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
jitone-ai is a powerful FilamentPHP plugin that integrates AI-powered features directly into your Filament forms.
Send Notification to discord channel Webhook using native FilamentPHP Notification Facade class
Alfabank REST API integration
Database-driven onboarding for Filament: progress checklists and guided spotlight tours, translatable to any locale.
Laravel package for Accurate Online API integration.
Create-project starter for a Laravel application with the public Capell CMS foundation.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-02-18
