PHPackages                             saintsystems/nova-resource-group-menu - 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. saintsystems/nova-resource-group-menu

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

saintsystems/nova-resource-group-menu
=====================================

Resource group sub-menus for Laravel Nova.

0.1.0(6y ago)2742.7k—10%13[14 PRs](https://github.com/saintsystems/nova-resource-group-menu/pulls)MITPHPPHP &gt;=7.1.0

Since Mar 21Pushed 3y ago3 watchersCompare

[ Source](https://github.com/saintsystems/nova-resource-group-menu)[ Packagist](https://packagist.org/packages/saintsystems/nova-resource-group-menu)[ RSS](/packages/saintsystems-nova-resource-group-menu/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)DependenciesVersions (27)Used By (0)

Nova Resource Group Menu
========================

[](#nova-resource-group-menu)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f947ce5f741a5f51709b768d7d91aef3c45fdcb9838593e14a2d914b6a664484/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7361696e7473797374656d732f6e6f76612d7265736f757263652d67726f75702d6d656e752e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/saintsystems/nova-resource-group-menu)[![Total Downloads](https://camo.githubusercontent.com/9985d5f1e813cd6a7410342a0cc5d9c6a9d314e5f98d90421752ac525d459e44/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7361696e7473797374656d732f6e6f76612d7265736f757263652d67726f75702d6d656e752e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/saintsystems/nova-resource-group-menu)

Give large resource groups their own menu pages with sub-groups.

[![screenshot](screenshot.png)](screenshot.png)

[![screenshot-2](screenshot-2.png)](screenshot-2.png)

Installation
------------

[](#installation)

You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require saintsystems/nova-resource-group-menu
```

Usage
-----

[](#usage)

To enable resource group menu pages add the `DisplaysInResourceGroupMenu` trait to your base Nova `Resource`.

```
// in your app/Nova/Resource.php class
use SaintSystems\Nova\ResourceGroupMenu\DisplaysInResourceGroupMenu;

abstract class Resource extends NovaResource
{
    use DisplaysInResourceGroupMenu;

    //... Removed for brevity

}
```

Then, within your Nova Resources that you want to group and place on their own resource group menu page, ensure the following:

1. Set `$displayInNavigation` to `false`:

```
// in your Nova Resource classes
public static $displayInNavigation = false;
```

2. Define a group for the resource:

```
// in your Nova Resource classes
public static $group = 'Master Data';
```

3. Define a sub-group for the resource:

```
// in your Nova Resource classes
public static $subGroup = 'Vendors';
```

Finally, register the tool in your `NovaServiceProvider` like so:

```
    use SaintSystems\Nova\ResourceGroupMenu\ResourceGroupMenu;

    /**
    * Get the tools that should be listed in the Nova sidebar.
    *
    * @return array
    */
    public function tools()
    {
        return [
            new ResourceGroupMenu
        ];
    }
```

Optionally, define custom icons to use for each Resource Menu Group

```
    /**
     * Get the tools that should be listed in the Nova sidebar.
     *
     * @return array
     */
    public function tools()
    {
        return [
            (new ResourceGroupMenu)->withMeta([
                'group_icons' => [
                    'admin' => '',
                    'master-data' => '',
                    'reports' => '',
                ],
            ]),
        ];
    }
```

You can customize the subGroup card column width too, by setting the tool width:

```
    /**
     * Get the tools that should be listed in the Nova sidebar.
     *
     * @return array
     */
    public function tools()
    {
        return [
            (new ResourceGroupMenu)->width('1/4'),
        ];
    }
```

Credits
-------

[](#credits)

- [Adam Anderly](https://github.com/anderly)
- [Saint Systems](https://github.com/saintsystems)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity40

Moderate usage in the ecosystem

Community18

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 70% 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 ~38 days

Recently: every ~103 days

Total

12

Last Release

2197d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/65f595c1144918633b20511e1a6ae44a2756ac9f155527cbeb8072b4b219d664?d=identicon)[saintsystems](/maintainers/saintsystems)

---

Top Contributors

[![anderly](https://avatars.githubusercontent.com/u/573151?v=4)](https://github.com/anderly "anderly (28 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (8 commits)")[![antoniovazevedo](https://avatars.githubusercontent.com/u/3220437?v=4)](https://github.com/antoniovazevedo "antoniovazevedo (1 commits)")[![dmason30](https://avatars.githubusercontent.com/u/20278756?v=4)](https://github.com/dmason30 "dmason30 (1 commits)")[![LorenzoSapora](https://avatars.githubusercontent.com/u/25519274?v=4)](https://github.com/LorenzoSapora "LorenzoSapora (1 commits)")[![thaisanly](https://avatars.githubusercontent.com/u/5434401?v=4)](https://github.com/thaisanly "thaisanly (1 commits)")

---

Tags

laravellaravel-novalaravel-nova-componentslaravelresourcesnova

### Embed Badge

![Health badge](/badges/saintsystems-nova-resource-group-menu/health.svg)

```
[![Health](https://phpackages.com/badges/saintsystems-nova-resource-group-menu/health.svg)](https://phpackages.com/packages/saintsystems-nova-resource-group-menu)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[digital-creative/conditional-container

Provides an easy way to conditionally show and hide fields in your Nova resources.

116593.8k4](/packages/digital-creative-conditional-container)[genealabs/laravel-overridable-model

Provide a uniform method of allowing models to be overridden in Laravel.

92398.0k2](/packages/genealabs-laravel-overridable-model)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[murdercode/nova4-tinymce-editor

Boost your Laravel Nova with the TinyMCE editor.

17165.2k](/packages/murdercode-nova4-tinymce-editor)[yieldstudio/nova-google-autocomplete

A Laravel Nova Google autocomplete field.

12218.4k](/packages/yieldstudio-nova-google-autocomplete)

PHPackages © 2026

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