PHPackages                             digital-creative/collapsible-resource-manager - 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. digital-creative/collapsible-resource-manager

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

digital-creative/collapsible-resource-manager
=============================================

A custom sidebar menu with collapsible groups

v2.3.0(1y ago)201869.2k—1.6%53[2 issues](https://github.com/dcasia/collapsible-resource-manager/issues)[3 PRs](https://github.com/dcasia/collapsible-resource-manager/pulls)1MITVuePHP &gt;=8.1

Since Sep 28Pushed 1y ago5 watchersCompare

[ Source](https://github.com/dcasia/collapsible-resource-manager)[ Packagist](https://packagist.org/packages/digital-creative/collapsible-resource-manager)[ GitHub Sponsors](https://github.com/milewski)[ RSS](/packages/digital-creative-collapsible-resource-manager/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (44)Used By (1)

Collapsible Resource Manager
============================

[](#collapsible-resource-manager)

[![Latest Version on Packagist](https://camo.githubusercontent.com/215c5828dc3debb5685aa97d37a65b9bfae397240dce6b21c1e265da63b87a4d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6469676974616c2d63726561746976652f636f6c6c61707369626c652d7265736f757263652d6d616e61676572)](https://packagist.org/packages/digital-creative/collapsible-resource-manager)[![Total Downloads](https://camo.githubusercontent.com/91832ea506ba3cd7d0af2797a71dee54b4e67f6e94a5bf37fa41828fabc9a7c7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6469676974616c2d63726561746976652f636f6c6c61707369626c652d7265736f757263652d6d616e61676572)](https://packagist.org/packages/digital-creative/collapsible-resource-manager)[![License](https://camo.githubusercontent.com/9a7d01439c1344c776625129bb5b0734bdd4f5f869b800790a91c7e60cf5864f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6469676974616c2d63726561746976652f636f6c6c61707369626c652d7265736f757263652d6d616e61676572)](https://github.com/dcasia/collapsible-resource-manager/blob/main/LICENSE)

  ![Laravel Nova Collapsible Resource Manager in action](https://raw.githubusercontent.com/dcasia/collapsible-resource-manager/main/screenshots/light.png)Provides an easy way to order and group your resources on the sidebar.

Installation
============

[](#installation)

You can install the package via composer:

```
composer require digital-creative/collapsible-resource-manager

```

Usage
=====

[](#usage)

This package can serve as a seamless replacement for Nova's default sidebar menu. The only modification it makes to the original Nova menu is the addition of the `->icon()` method to the MenuItem class, which enables you to easily incorporate icons into each menu item.

For all available options you can check nova documentation [here](https://nova.laravel.com/docs/customization/menus.html#menu-sections).

```
class NovaServiceProvider extends NovaApplicationServiceProvider {

    public function boot(): void
    {
        //...
        Nova::mainMenu(function (Request $request): array {
            return [
                MenuSection::make('Content', [
                    MenuGroup::make('User Base', [
                        MenuItem::resource(User::class)->icon('...'),
                        MenuItem::resource(Article::class)->icon('annotation'),
                        MenuItem::resource(Comment::class)->icon('chat-alt'),
                    ]),
                ])->icon('lightning-bolt')->collapsable(),
            ];
        });
        //...
    }

}
```

Configuration
-------------

[](#configuration)

You can also enable/disable the main header menu handling. For example, if you don't want the user menu, theme switcher, and notification icon to be moved to the bottom left side, you can manually disable it by adding these lines to your Nova config file:

```
// config/nova.php

'vendors' => [
    'collapsible_resource_manager' => [
        'move_user_menu' => false,
        'move_theme_switcher' => false,
        'move_notification_center' => false,
        'section_title' => true,
        'collapse_on_select' => true,
        'collapse_on_refresh' => false,
    ]
]
```

⭐️ Show Your Support
--------------------

[](#️-show-your-support)

Please give a ⭐️ if this project helped you!

### Other Packages You Might Like

[](#other-packages-you-might-like)

- [Nova Dashboard](https://github.com/dcasia/nova-dashboard) - The missing dashboard for Laravel Nova!
- [Nova Welcome Card](https://github.com/dcasia/nova-welcome-card) - A configurable version of the `Help card` that comes with Nova.
- [Icon Action Toolbar](https://github.com/dcasia/icon-action-toolbar) - Replaces the default boring action menu with an inline row of icon-based actions.
- [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.
- [Collapsible Resource Manager](https://github.com/dcasia/collapsible-resource-manager) - Provides an easy way to order and group your resources on the sidebar.
- [Resource Navigation Tab](https://github.com/dcasia/resource-navigation-tab) - Organize your resource fields into tabs.
- [Resource Navigation Link](https://github.com/dcasia/resource-navigation-link) - Create links to internal or external resources.
- [Nova Mega Filter](https://github.com/dcasia/nova-mega-filter) - Display all your filters in a card instead of a tiny dropdown!
- [Nova Pill Filter](https://github.com/dcasia/nova-pill-filter) - A Laravel Nova filter that renders into clickable pills.
- [Nova Slider Filter](https://github.com/dcasia/nova-slider-filter) - A Laravel Nova filter for picking range between a min/max value.
- [Nova Range Input Filter](https://github.com/dcasia/nova-range-input-filter) - A Laravel Nova range input filter.
- [Nova FilePond](https://github.com/dcasia/nova-filepond) - A Nova field for uploading File, Image and Video using Filepond.
- [Custom Relationship Field](https://github.com/dcasia/custom-relationship-field) - Emulate HasMany relationship without having a real relationship set between resources.
- [Column Toggler](https://github.com/dcasia/column-toggler) - A Laravel Nova package that allows you to hide/show columns in the index view.
- [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.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://raw.githubusercontent.com/dcasia/collapsible-resource-manager/master/LICENSE) for more information.

###  Health Score

55

—

FairBetter than 98% of packages

Maintenance42

Moderate activity, may be stable

Popularity56

Moderate usage in the ecosystem

Community28

Small or concentrated contributor base

Maturity79

Established project with proven stability

 Bus Factor1

Top contributor holds 73.4% 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

Every ~47 days

Recently: every ~114 days

Total

42

Last Release

480d ago

Major Versions

v0.1.9 → v1.0.02019-11-18

v1.4.2 → v2.0.02023-10-07

PHP version history (2 changes)v0.1.0PHP &gt;=7.1.0

v2.0.0PHP &gt;=8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/e4a85b779289ce63c67af70941a545331f3e362a4b58330495cc7e77250e5401?d=identicon)[milewski](/maintainers/milewski)

---

Top Contributors

[![milewski](https://avatars.githubusercontent.com/u/2874967?v=4)](https://github.com/milewski "milewski (47 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![bernhardh](https://avatars.githubusercontent.com/u/642292?v=4)](https://github.com/bernhardh "bernhardh (1 commits)")[![bilogic](https://avatars.githubusercontent.com/u/946010?v=4)](https://github.com/bilogic "bilogic (1 commits)")[![dgoldstein89](https://avatars.githubusercontent.com/u/53494117?v=4)](https://github.com/dgoldstein89 "dgoldstein89 (1 commits)")[![eugenefvdm](https://avatars.githubusercontent.com/u/1836436?v=4)](https://github.com/eugenefvdm "eugenefvdm (1 commits)")[![gabrielesbaiz](https://avatars.githubusercontent.com/u/22818698?v=4)](https://github.com/gabrielesbaiz "gabrielesbaiz (1 commits)")[![infostreams](https://avatars.githubusercontent.com/u/1132744?v=4)](https://github.com/infostreams "infostreams (1 commits)")[![kavanpancholi](https://avatars.githubusercontent.com/u/5137072?v=4)](https://github.com/kavanpancholi "kavanpancholi (1 commits)")[![KulwinderKohli](https://avatars.githubusercontent.com/u/11345066?v=4)](https://github.com/KulwinderKohli "KulwinderKohli (1 commits)")[![Marcus-IXAU](https://avatars.githubusercontent.com/u/62982527?v=4)](https://github.com/Marcus-IXAU "Marcus-IXAU (1 commits)")[![scramatte](https://avatars.githubusercontent.com/u/188766?v=4)](https://github.com/scramatte "scramatte (1 commits)")[![vitorcrovador](https://avatars.githubusercontent.com/u/22171591?v=4)](https://github.com/vitorcrovador "vitorcrovador (1 commits)")[![aaronaccessvr](https://avatars.githubusercontent.com/u/79271047?v=4)](https://github.com/aaronaccessvr "aaronaccessvr (1 commits)")[![xoco70](https://avatars.githubusercontent.com/u/5855577?v=4)](https://github.com/xoco70 "xoco70 (1 commits)")[![alancolant](https://avatars.githubusercontent.com/u/19172637?v=4)](https://github.com/alancolant "alancolant (1 commits)")

---

Tags

collapsiblelaravelnovaresource-toollaravelcollapsenovasidebarcollapsible

### Embed Badge

![Health badge](/badges/digital-creative-collapsible-resource-manager/health.svg)

```
[![Health](https://phpackages.com/badges/digital-creative-collapsible-resource-manager/health.svg)](https://phpackages.com/packages/digital-creative-collapsible-resource-manager)
```

###  Alternatives

[optimistdigital/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2872.1M6](/packages/optimistdigital-nova-sortable)[outl1ne/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2861.8M9](/packages/outl1ne-nova-sortable)[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

14720.0k](/packages/markwalet-nova-modal-response)[datomatic/nova-enum-field

A Laravel Nova PHP 8.1 enum field with filters

20134.2k](/packages/datomatic-nova-enum-field)

PHPackages © 2026

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