{"id":21504428,"url":"https://github.com/dcasia/collapsible-resource-manager","last_synced_at":"2025-05-15T01:05:26.883Z","repository":{"id":35136927,"uuid":"211467700","full_name":"dcasia/collapsible-resource-manager","owner":"dcasia","description":"A custom sidebar menu with collapsible groups","archived":false,"fork":false,"pushed_at":"2025-02-11T08:01:09.000Z","size":1284,"stargazers_count":201,"open_issues_count":12,"forks_count":49,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-13T22:39:35.243Z","etag":null,"topics":["collapsible","laravel","nova","resource-tool"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/dcasia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"milewski","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2019-09-28T08:17:30.000Z","updated_at":"2025-03-21T16:21:02.000Z","dependencies_parsed_at":"2023-10-21T02:28:57.110Z","dependency_job_id":"e9c48387-88f0-4803-89e0-a908ee14df05","html_url":"https://github.com/dcasia/collapsible-resource-manager","commit_stats":{"total_commits":62,"total_committers":14,"mean_commits":4.428571428571429,"dds":"0.24193548387096775","last_synced_commit":"85c031da5e25a95fe56b240405d094926cde6f89"},"previous_names":[],"tags_count":42,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcasia%2Fcollapsible-resource-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcasia%2Fcollapsible-resource-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcasia%2Fcollapsible-resource-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcasia%2Fcollapsible-resource-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dcasia","download_url":"https://codeload.github.com/dcasia/collapsible-resource-manager/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254254039,"owners_count":22039792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["collapsible","laravel","nova","resource-tool"],"created_at":"2024-11-23T18:59:58.875Z","updated_at":"2025-05-15T01:05:26.865Z","avatar_url":"https://github.com/dcasia.png","language":"Vue","funding_links":["https://github.com/sponsors/milewski"],"categories":[],"sub_categories":[],"readme":"# Collapsible Resource Manager\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/digital-creative/collapsible-resource-manager)](https://packagist.org/packages/digital-creative/collapsible-resource-manager)\n[![Total Downloads](https://img.shields.io/packagist/dt/digital-creative/collapsible-resource-manager)](https://packagist.org/packages/digital-creative/collapsible-resource-manager)\n[![License](https://img.shields.io/packagist/l/digital-creative/collapsible-resource-manager)](https://github.com/dcasia/collapsible-resource-manager/blob/main/LICENSE)\n\n\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/dcasia/collapsible-resource-manager/main/screenshots/dark.png\"\u003e\n  \u003cimg alt=\"Laravel Nova Collapsible Resource Manager in action\" src=\"https://raw.githubusercontent.com/dcasia/collapsible-resource-manager/main/screenshots/light.png\"\u003e\n\u003c/picture\u003e\n\nProvides an easy way to order and group your resources on the sidebar.\n\n# Installation\n\nYou can install the package via composer:\n\n```\ncomposer require digital-creative/collapsible-resource-manager\n```\n\n# Usage\n\nThis package can serve as a seamless replacement for Nova's default sidebar menu.\nThe only modification it makes to the original Nova menu is the addition of the `-\u003eicon()` method to the MenuItem class, which enables you to easily incorporate icons into each menu item.\n\nFor all available options you can check nova documentation [here](https://nova.laravel.com/docs/customization/menus.html#menu-sections).\n\n```php\nclass NovaServiceProvider extends NovaApplicationServiceProvider {\n\n    public function boot(): void\n    {\n        //...\n        Nova::mainMenu(function (Request $request): array {    \n            return [\n                MenuSection::make('Content', [\n                    MenuGroup::make('User Base', [\n                        MenuItem::resource(User::class)-\u003eicon('\u003csvg\u003e...\u003c/svg\u003e'),\n                        MenuItem::resource(Article::class)-\u003eicon('annotation'),\n                        MenuItem::resource(Comment::class)-\u003eicon('chat-alt'),\n                    ]),\n                ])-\u003eicon('lightning-bolt')-\u003ecollapsable(),\n            ];    \n        });\n        //...\n    }\n\n}\n```\n\n## Configuration\n\nYou can also enable/disable the main header menu handling. For example, if you don't want the user menu, theme switcher,\nand notification icon to be moved to the bottom left side, you can manually disable it by adding these lines to your Nova config file:\n\n```php\n// config/nova.php\n\n'vendors' =\u003e [\n    'collapsible_resource_manager' =\u003e [\n        'move_user_menu' =\u003e false,\n        'move_theme_switcher' =\u003e false,\n        'move_notification_center' =\u003e false,\n        'section_title' =\u003e true,\n        'collapse_on_select' =\u003e true,\n        'collapse_on_refresh' =\u003e false,\n    ]\n]\n```\n\n## ⭐️ Show Your Support\n\nPlease give a ⭐️ if this project helped you!\n\n### Other Packages You Might Like\n\n- [Nova Dashboard](https://github.com/dcasia/nova-dashboard) - The missing dashboard for Laravel Nova!\n- [Nova Welcome Card](https://github.com/dcasia/nova-welcome-card) - A configurable version of the `Help card` that comes with Nova.\n- [Icon Action Toolbar](https://github.com/dcasia/icon-action-toolbar) - Replaces the default boring action menu with an inline row of icon-based actions.\n- [Expandable Table Row](https://github.com/dcasia/expandable-table-row) - Provides an easy way to append extra data to each row of your resource tables.\n- [Collapsible Resource Manager](https://github.com/dcasia/collapsible-resource-manager) - Provides an easy way to order and group your resources on the sidebar.\n- [Resource Navigation Tab](https://github.com/dcasia/resource-navigation-tab) - Organize your resource fields into tabs.\n- [Resource Navigation Link](https://github.com/dcasia/resource-navigation-link) - Create links to internal or external resources.\n- [Nova Mega Filter](https://github.com/dcasia/nova-mega-filter) - Display all your filters in a card instead of a tiny dropdown!\n- [Nova Pill Filter](https://github.com/dcasia/nova-pill-filter) - A Laravel Nova filter that renders into clickable pills.\n- [Nova Slider Filter](https://github.com/dcasia/nova-slider-filter) - A Laravel Nova filter for picking range between a min/max value.\n- [Nova Range Input Filter](https://github.com/dcasia/nova-range-input-filter) - A Laravel Nova range input filter.\n- [Nova FilePond](https://github.com/dcasia/nova-filepond) - A Nova field for uploading File, Image and Video using Filepond.\n- [Custom Relationship Field](https://github.com/dcasia/custom-relationship-field) - Emulate HasMany relationship without having a real relationship set between resources.\n- [Column Toggler](https://github.com/dcasia/column-toggler) - A Laravel Nova package that allows you to hide/show columns in the index view.\n- [Batch Edit Toolbar](https://github.com/dcasia/batch-edit-toolbar) - Allows you to update a single column of a resource all at once directly from the index page.\n\n## License\n\nThe MIT License (MIT). Please see [License File](https://raw.githubusercontent.com/dcasia/collapsible-resource-manager/master/LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcasia%2Fcollapsible-resource-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdcasia%2Fcollapsible-resource-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcasia%2Fcollapsible-resource-manager/lists"}