{"id":41353231,"url":"https://github.com/octopyid/filamenttabify","last_synced_at":"2026-01-29T19:02:46.818Z","repository":{"id":334077934,"uuid":"1139543623","full_name":"OctopyID/FilamentTabify","owner":"OctopyID","description":"Transform your Filament dashboard with elegant Tabbed Widgets","archived":false,"fork":false,"pushed_at":"2026-01-23T05:09:31.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-23T09:56:54.297Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OctopyID.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-22T05:08:25.000Z","updated_at":"2026-01-23T05:07:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/OctopyID/FilamentTabify","commit_stats":null,"previous_names":["octopyid/filamenttabify"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/OctopyID/FilamentTabify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopyID%2FFilamentTabify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopyID%2FFilamentTabify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopyID%2FFilamentTabify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopyID%2FFilamentTabify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OctopyID","download_url":"https://codeload.github.com/OctopyID/FilamentTabify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OctopyID%2FFilamentTabify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28882623,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T16:41:59.663Z","status":"ssl_error","status_checked_at":"2026-01-29T16:39:39.641Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-23T07:28:36.541Z","updated_at":"2026-01-29T19:02:46.811Z","avatar_url":"https://github.com/OctopyID.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://img.shields.io/packagist/v/octopyid/filament-tabify.svg?style=for-the-badge\" alt=\"Version\"\u003e\n    \u003cimg src=\"https://img.shields.io/packagist/dt/octopyid/filament-tabify.svg?style=for-the-badge\u0026color=F28D1A\" alt=\"Downloads\"\u003e\n    \u003cimg src=\"https://img.shields.io/packagist/l/octopyid/filament-tabify.svg?style=for-the-badge\" alt=\"License\"\u003e\n\u003c/p\u003e\n\n# Filament Tabify\n\nTransform your Filament dashboard with elegant Tabbed Widgets. Group multiple widgets into a single, organized view to save space and improve clarity.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require octopyid/filament-tabify\n```\n\n## Usage\n\nTo create a tabbed widget, extend the `TabsWidget` class and define your tabs using the `getTabs()` method. Each tab can contain a schema of other widgets.\n\n```php\nuse Octopy\\Filament\\Tabify\\Tab;\nuse Octopy\\Filament\\Tabify\\TabsWidget;\n\nclass DashboardTabsWidget extends TabsWidget\n{\n    protected int|string|array $columnSpan = 'full';\n\n    public function getTabs() : array\n    {\n        return [\n            Tab::make('Foo')\n                -\u003eicon('lucide-chart-line')\n                -\u003ebadge(100)\n                -\u003eschema([\n                    Foo::class,\n                    Bar::class,\n                    Baz::class,\n                ]),\n\n            Tab::make('Bar')-\u003eschema([\n                Qux::class,\n            ]),\n        ];\n    }\n}\n```\n\n### Registering the Widget\n\nYou can register the widget in your Filament Pages or Resources just like any other widget.\n\n```php\nuse App\\Filament\\Widgets\\DashboardTabsWidget;\n\nclass Dashboard extends \\Filament\\Pages\\Dashboard\n{\n    public function getWidgets(): array\n    {\n        return [\n            DashboardTabsWidget::class,\n        ];\n    }\n}\n```\n\nOr in a Resource Page:\n\n```php\nuse App\\Filament\\Widgets\\DashboardTabsWidget;\n\nclass ListOrders extends \\Filament\\Resources\\Pages\\ListRecords\n{\n    protected function getHeaderWidgets(): array\n    {\n        return [\n            DashboardTabsWidget::class,\n        ];\n    }\n}\n```\n\n### Customizing the Widget's Grid\n\nYou can customize the number of columns in the widget's grid by overriding the `getColumns()` method.\n\n```php\npublic function getColumns(): int | array\n{\n    return 2;\n}\n```\n\nYou can also specify different column counts for different breakpoints:\n\n```php\npublic function getColumns(): int | array\n{\n    return [\n        'md' =\u003e 4,\n        'xl' =\u003e 5,\n    ];\n}\n```\n\n### Customizing the Widget's Width\n\nYou can customize the width of the widget by overriding the `$columnSpan` property.\n\n```php\nprotected int | string | array $columnSpan = 'full';\n```\n\nYou can also specify different column spans for different breakpoints:\n\n```php\nprotected int | string | array $columnSpan = [\n    'md' =\u003e 2,\n    'xl' =\u003e 3,\n];\n```\n\n## Changelog\n\nPlease see [releases](https://github.com/OctopyID/FilamentTabify/releases) for more information on what has changed recently.\n\n## Security Vulnerabilities\n\nIf you discover a security vulnerability within this package, please send an e-mail to Supian M via [supianidz@octopy.dev](mailto:supianidz@octopy.dev). All security\nvulnerabilities will be promptly addressed.\n\n## Credits\n\n- [Supian M](https://github.com/SupianIDz)\n- [All Contributors](https://github.com/OctopyID/FilamentTabify/contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctopyid%2Ffilamenttabify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foctopyid%2Ffilamenttabify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foctopyid%2Ffilamenttabify/lists"}