PHPackages                             addgod/nova-nested-breadcrumbs - 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. addgod/nova-nested-breadcrumbs

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

addgod/nova-nested-breadcrumbs
==============================

Fully nested bradbcrumbs for laravel nova.

1.0.1(4y ago)22131[1 PRs](https://github.com/addgod/nova-nested-breadcrumbs/pulls)MITPHPPHP ^7.3|^8.0

Since Jan 2Pushed 4y ago1 watchersCompare

[ Source](https://github.com/addgod/nova-nested-breadcrumbs)[ Packagist](https://packagist.org/packages/addgod/nova-nested-breadcrumbs)[ RSS](/packages/addgod-nova-nested-breadcrumbs/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

Nova Breadcrumbs
================

[](#nova-breadcrumbs)

Breadcrumbs for Laravel Nova

[![Latest Stable Version](https://camo.githubusercontent.com/67b0c4f4b7b584bc9e41ac58f6930810362965a0abb5f99a783d5bd4cc0f67a5/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f762f63687269732d776172652f6e6f76612d62726561646372756d6273)](https://packagist.org/packages/chris-ware/nova-breadcrumbs)[![Total Downloads](https://camo.githubusercontent.com/d20b059e961a2c6f72e0dec195c72c5c29bcf9ba0bba249152e1e3e64558a880/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f64742f63687269732d776172652f6e6f76612d62726561646372756d6273)](https://camo.githubusercontent.com/d20b059e961a2c6f72e0dec195c72c5c29bcf9ba0bba249152e1e3e64558a880/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f64742f63687269732d776172652f6e6f76612d62726561646372756d6273)[![License](https://camo.githubusercontent.com/28458dfdab4027e435b8aacb4bdf040843858898ef4d97ace739024be7318cb4/68747470733a2f2f62616467656e2e6e65742f7061636b61676973742f6c6963656e73652f63687269732d776172652f6e6f76612d62726561646372756d6273)](https://packagist.org/packages/chris-ware/nova-breadcrumbs)[![StyleCI](https://camo.githubusercontent.com/d8f83bea77531e4784912e5444148e369b72e9edc3a691f639d29cd7b5f81a19/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3136303336373738352f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/160367785)

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

[](#installation)

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

```
composer require addgod/nova-nested-breadcrumbs
```

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

```
// in app/Providers/NovaServiceProvder.php

// ...
public function tools()
{
    return [
        // ...
        \Addgod\NestedBreadcrumbs\NestedBreadcrumbs::make(),
    ];
}
```

If you need to extend this packages middleware it is possible to do so from the config. Just publish the config as so.

```
php artisan vendor:publish --provider="Addgod\NestedBreadcrumbs\ToolServiceProvider"
```

Finally, add the Breadcrumbs trait to your App\\Nova\\Resource class.

```
use Addgod\NestedBreadcrumbs\Traits\Breadcrumbs;

abstract class Resource extends NovaResource
{
    use Breadcrumbs;
```

And to define the parent that should be shown add the following function to any resource.

```
/**
 * Get the parent to be displayed in the breadcrumbs.
 *
 * @return \Illuminate\Database\Eloquent\Model|null
 */
public function breadcrumbParent()
{
    return $this->model()->parentModel;
}
```

Customisation
-------------

[](#customisation)

You can disable the bundled styles and load your own by adding the following method to the call:

```
// in app/Providers/NovaServiceProvder.php

// ...
public function tools()
{
    return [
        // ...
        \Addgod\NestedBreadcrumbs\NestedBreadcrumbs::make()->withoutStyles(),
    ];
}
```

You can also customise both the label and title for a Resource. Label refers to the Resource's Name, so a Users Resource would have a Users label. Title refers to the title of the Resource as set by the $title property on the resource, so by default it would be the resource ID. Both of these can be overwritten for Breadcrumbs only by overwriting the functions on the trait that start with breadcrumb.

You can also conditionally disable breadcrumbs, using the static breadcrumbs method presented in the trait.

Information
-----------

[](#information)

This package works using the custom header elements available on all Nova views. Due to the fact that the data available to these views differ, the rendering of breadcrumbs is API powered, to ensure that for all views, the necessary data is available and displayed.

Screenshots
-----------

[](#screenshots)

Screenshots can be seen [here](screenshots.md).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

2

Last Release

1589d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2fe57cce1f6232b48c1de83fd36af399e56d83d850a4672a2087fca5e6ab3fe4?d=identicon)[Addgod](/maintainers/Addgod)

---

Top Contributors

[![addgod](https://avatars.githubusercontent.com/u/9675235?v=4)](https://github.com/addgod "addgod (7 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/addgod-nova-nested-breadcrumbs/health.svg)

```
[![Health](https://phpackages.com/badges/addgod-nova-nested-breadcrumbs/health.svg)](https://phpackages.com/packages/addgod-nova-nested-breadcrumbs)
```

###  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)[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)[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)

PHPackages © 2026

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