PHPackages                             digital-creative/resource-navigation-tab - 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/resource-navigation-tab

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

digital-creative/resource-navigation-tab
========================================

Organize your resource fields into tabs.

v2.1.5(2y ago)78152.7k↓36.5%13[2 issues](https://github.com/dcasia/resource-navigation-tab/issues)MITPHPPHP &gt;=8.1

Since Nov 24Pushed 2y ago4 watchersCompare

[ Source](https://github.com/dcasia/resource-navigation-tab)[ Packagist](https://packagist.org/packages/digital-creative/resource-navigation-tab)[ GitHub Sponsors](https://github.com/milewski)[ RSS](/packages/digital-creative-resource-navigation-tab/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (10)Dependencies (1)Versions (26)Used By (0)

Resource Navigation Tab
=======================

[](#resource-navigation-tab)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3083328b312ded4d069319a2e160e48bed022bf309c0ea2462d8a937fc0e6cc6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6469676974616c2d63726561746976652f7265736f757263652d6e617669676174696f6e2d746162)](https://packagist.org/packages/digital-creative/resource-navigation-tab)[![Total Downloads](https://camo.githubusercontent.com/3ca3333bd26493901ce5da3bc75373cecef8e7d808239c15fe01a78175b74e57/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6469676974616c2d63726561746976652f7265736f757263652d6e617669676174696f6e2d746162)](https://packagist.org/packages/digital-creative/resource-navigation-tab)[![License](https://camo.githubusercontent.com/f2a2ea1c6477a9944b59c4a866a9191eee34da543c37fee01b557a0fa13745ef/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6469676974616c2d63726561746976652f7265736f757263652d6e617669676174696f6e2d746162)](https://github.com/dcasia/resource-navigation-tab/blob/main/LICENSE)

Organize your resource fields into tabs.

  ![Resource Navigation Tab in Action](https://raw.githubusercontent.com/dcasia/resource-navigation-tab/main/screenshots/light/demo-2.png)Installation
============

[](#installation)

You can install the package via composer:

```
composer require digital-creative/resource-navigation-tab
```

Basic Usage
-----------

[](#basic-usage)

First, import `HasResourceNavigationTabTrait` trait into your resource and start grouping your fields with the `ResourceNavigationField` object:

```
use DigitalCreative\ResourceNavigationTab\HasResourceNavigationTabTrait;
use DigitalCreative\ResourceNavigationTab\ResourceNavigationField;

class ExampleNovaResource extends Resource {

    use HasResourceNavigationTabTrait;

    public function fields(NovaRequest $request): array
    {
        return [
            ResourceNavigationField::make('Information')
                ->fields([
                    Text::make('Name'),
                    Text::make('Age'),
                    HasMany::make('Hobbies'),
                ]),
            ResourceNavigationField::make('Activities')->fields([ ... ]),
            ResourceNavigationField::make('Social Interactions')->fields([ ... ]),
            ResourceNavigationField::make('Settings')->fields([ ... ]),
        ];
    }

}
```

Once setup navigate to your resource detail view, and you should be presented with this card:

  ![Resource Navigation Tab in Action](https://raw.githubusercontent.com/dcasia/resource-navigation-tab/main/screenshots/light/demo-1.png)Every defined card will be shown on every tab by default, however you can choose which card you want to show when a specific tab is selected:

```
use DigitalCreative\ResourceNavigationTab\HasResourceNavigationTabTrait;
use DigitalCreative\ResourceNavigationTab\ResourceNavigationField;
use DigitalCreative\ResourceNavigationTab\CardMode;

class ExampleNovaResource extends Resource {

    use HasResourceNavigationTabTrait;

    public function fields(NovaRequest $request): array
    {
        return [
            ResourceNavigationField::make('Information'), // show all the available cards by default
            ResourceNavigationField::make('Activities')->withCards([ DailySalesCard::class, ClientProfileCard::class ]), // only show these cards when this tab is active
            ResourceNavigationField::make('Settings')->withoutCards(), // hide all cards when this tab is active
        ];
    }

    public function cards(NovaRequest $request): array
    {
        return [
            new ClientPerformanceCard(),
            new DailySalesCard(),
            new ClientProfileCard()
        ];
    }

}
```

⭐️ 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](./LICENSE) for more information.

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity47

Moderate usage in the ecosystem

Community19

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 63% 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 ~60 days

Recently: every ~10 days

Total

25

Last Release

963d ago

Major Versions

v0.2.8 → v1.0.02020-02-11

v1.1.1 → v2.0.02023-09-17

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 (34 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (11 commits)")[![4n70w4](https://avatars.githubusercontent.com/u/38257723?v=4)](https://github.com/4n70w4 "4n70w4 (4 commits)")[![hello-liang-shan](https://avatars.githubusercontent.com/u/47734732?v=4)](https://github.com/hello-liang-shan "hello-liang-shan (2 commits)")[![cord](https://avatars.githubusercontent.com/u/158588?v=4)](https://github.com/cord "cord (1 commits)")[![mastani](https://avatars.githubusercontent.com/u/7414851?v=4)](https://github.com/mastani "mastani (1 commits)")[![angelsk](https://avatars.githubusercontent.com/u/606510?v=4)](https://github.com/angelsk "angelsk (1 commits)")

---

Tags

cardfieldlaravelnovanova4tabslaravelfieldcardnovatabs

### Embed Badge

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

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

###  Alternatives

[digital-creative/resource-navigation-link

Create links to internal or external resources.

1049.0k](/packages/digital-creative-resource-navigation-link)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[outl1ne/nova-color-field

A Laravel Nova Color Picker field.

26263.8k](/packages/outl1ne-nova-color-field)[optimistdigital/nova-color-field

A Laravel Nova Color Picker field.

26256.9k](/packages/optimistdigital-nova-color-field)[optimistdigital/nova-notes-field

This Laravel Nova package adds a notes field to Nova's arsenal of fields.

52145.0k](/packages/optimistdigital-nova-notes-field)[optimistdigital/nova-inline-text-field

A Laravel Nova inline text field.

2322.8k](/packages/optimistdigital-nova-inline-text-field)

PHPackages © 2026

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