PHPackages                             opscale-co/nova-catalogs - 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. opscale-co/nova-catalogs

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

opscale-co/nova-catalogs
========================

A simple repository for managing catalogs in your Nova app

1.2.2(3mo ago)0361↑33.3%1[2 issues](https://github.com/opscale-co/nova-catalogs/issues)1MITPHPPHP &gt;=8.2CI passing

Since Apr 27Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/opscale-co/nova-catalogs)[ Packagist](https://packagist.org/packages/opscale-co/nova-catalogs)[ Docs](https://github.com/opscale-co/nova-catalogs)[ RSS](/packages/opscale-co-nova-catalogs/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (7)Versions (6)Used By (1)

Support us
----------

[](#support-us)

At Opscale, we’re passionate about contributing to the open-source community by providing solutions that help businesses scale efficiently. If you’ve found our tools helpful, here are a few ways you can show your support:

⭐ **Star this repository** to help others discover our work and be part of our growing community. Every star makes a difference!

💬 **Share your experience** by leaving a review on [Trustpilot](https://www.trustpilot.com/review/opscale.co) or sharing your thoughts on social media. Your feedback helps us improve and grow!

📧 **Send us feedback** on what we can improve at . We value your input to make our tools even better for everyone.

🙏 **Get involved** by actively contributing to our open-source repositories. Your participation benefits the entire community and helps push the boundaries of what’s possible.

💼 **Hire us** if you need custom dashboards, admin panels, internal tools or MVPs tailored to your business. With our expertise, we can help you systematize operations or enhance your existing product. Contact us at  to discuss your project needs.

Thanks for helping Opscale continue to scale! 🚀

Description
-----------

[](#description)

A simple repository for managing catalogs in your Nova app.

Every app needs a set of options for fields in forms. Instead of define these options in code, allow users to dinamically manage them easily.

[![Catalog demo](https://raw.githubusercontent.com/opscale-co/nova-catalogs/refs/heads/main/screenshots/nova-catalogs.gif)](https://raw.githubusercontent.com/opscale-co/nova-catalogs/refs/heads/main/screenshots/nova-catalogs.gif)

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

[](#installation)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b22ca1eb404fc249ac4c8afb5295078d3ff5ca66629b6c530d98cbd9ccf0fa20/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f707363616c652d636f2f6e6f76612d636174616c6f67732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/opscale-co/nova-catalogs)

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

```
composer require opscale-co/nova-catalogs
```

Next up, you must register the tool with Nova. This is typically done in the `tools` method of the `NovaServiceProvider`.

```
// in app/Providers/NovaServiceProvider.php
// ...
public function tools()
{
    return [
        // ...
        new \Opscale\NovaCatalogs\Tool(),
    ];
}
```

Usage
-----

[](#usage)

### Via UI

[](#via-ui)

A "Catalogs" menu item is available by default. Use the Nova interface to create and manage catalogs and their items.

### Via Code

[](#via-code)

Use the `Catalogable` trait to parent catalogs to your models:

```
use Opscale\NovaCatalogs\Concerns\Catalogable;

class Company extends Model
{
    use Catalogable;
}
```

Retrieve catalog options using `options()` or `filteredOptions()`. Both methods use cache for performance:

```
use Opscale\NovaCatalogs\Models\Catalog;

// Get all options as key => name array
Catalog::options('countries');
```

Catalogs and catalog items have a `data` field for storing extra information. Use `filteredOptions()` to filter by data or other properties:

```
// Filter options using a callback (e.g., by data)
Catalog::filteredOptions('countries', fn ($item) => $item->data['continent'] === 'europe');
```

Use with Nova Select fields:

```
Select::make('Country')
    ->options(Catalog::options('countries'))
    ->displayUsingLabels();
```

Testing
-------

[](#testing)

```
npm run test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/opscale-co/.github/blob/main/CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Opscale](https://github.com/opscale-co)

License
-------

[](#license)

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

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance78

Regular maintenance activity

Popularity17

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 72.7% 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 ~67 days

Total

5

Last Release

117d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3722594?v=4)[opscale](/maintainers/opscale)[@opscale](https://github.com/opscale)

---

Top Contributors

[![opscale-development](https://avatars.githubusercontent.com/u/181295122?v=4)](https://github.com/opscale-development "opscale-development (16 commits)")[![semantic-release-bot](https://avatars.githubusercontent.com/u/32174276?v=4)](https://github.com/semantic-release-bot "semantic-release-bot (4 commits)")[![kevin-Oz](https://avatars.githubusercontent.com/u/31225283?v=4)](https://github.com/kevin-Oz "kevin-Oz (2 commits)")

---

Tags

laravelpackagetoolcatalognovaopscale

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/opscale-co-nova-catalogs/health.svg)

```
[![Health](https://phpackages.com/badges/opscale-co-nova-catalogs/health.svg)](https://phpackages.com/packages/opscale-co-nova-catalogs)
```

###  Alternatives

[pdmfc/nova-info-card

A Laravel Nova info card.

14103.0k2](/packages/pdmfc-nova-info-card)[cendekia/nova-setting-tool

An app setting manager tool for laravel nova

4010.5k](/packages/cendekia-nova-setting-tool)[demency/nova-gridder

A Laravel Nova Package for resource details grids.

1615.1k](/packages/demency-nova-gridder)

PHPackages © 2026

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