PHPackages                             rawilk/laravel-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. rawilk/laravel-breadcrumbs

Abandoned → [diglactic/laravel-breadcrumbs](/?search=diglactic%2Flaravel-breadcrumbs)ArchivedLibrary[Utility &amp; Helpers](/categories/utility)

rawilk/laravel-breadcrumbs
==========================

Easily add breadcrumbs to a Laravel app.

v4.0.1(3y ago)125.4k↓67.9%1MITPHPPHP ^8.1|^8.2

Since Aug 20Pushed 2y ago1 watchersCompare

[ Source](https://github.com/rawilk/laravel-breadcrumbs)[ Packagist](https://packagist.org/packages/rawilk/laravel-breadcrumbs)[ Docs](https://github.com/rawilk/laravel-breadcrumbs)[ GitHub Sponsors](https://github.com/rawilk)[ RSS](/packages/rawilk-laravel-breadcrumbs/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (7)Dependencies (13)Versions (13)Used By (0)

**Notice:** In favor of using Filament, I have no need for this package anymore. As a result, I will no longer commit any more changes to it.

Breadcrumbs for Laravel
=======================

[](#breadcrumbs-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cbc3a0686398e38f9ab01153f18f22785fd7c3a4ad8e71e1c739e7a6ca04e7a6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f726177696c6b2f6c61726176656c2d62726561646372756d62732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rawilk/laravel-breadcrumbs)[![Tests](https://github.com/rawilk/laravel-breadcrumbs/workflows/Tests/badge.svg?style=flat-square)](https://github.com/rawilk/laravel-breadcrumbs/workflows/Tests/badge.svg?style=flat-square)[![Total Downloads](https://camo.githubusercontent.com/8a83558da55eb32a42bcf3d4f3b33530c7956146ea91243f29a9151a95855d51/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f726177696c6b2f6c61726176656c2d62726561646372756d62732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rawilk/laravel-breadcrumbs)[![PHP from Packagist](https://camo.githubusercontent.com/b4651a18c146b5a12dfa375feb53e9e325658b02a519a4610e12a8c35b098597/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f726177696c6b2f6c61726176656c2d62726561646372756d62733f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rawilk/laravel-breadcrumbs)[![License](https://camo.githubusercontent.com/3b67b91715c9c75b631189ba65830e06e5b084a4c69a4372f8af211b097e1c4f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f726177696c6b2f6c61726176656c2d62726561646372756d62733f7374796c653d666c61742d737175617265)](https://github.com/rawilk/laravel-breadcrumbs/blob/main/LICENSE.md)

[![social image](https://camo.githubusercontent.com/6bfdcbff39658875d16faca28a6640b29f2207654042b7bd21bc8d8a39c36d00/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f42726561646372756d6273253230666f722532304c61726176656c2e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d726177696c6b2532466c61726176656c2d62726561646372756d6273267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d456173696c792b6164642b62726561646372756d62732b746f2b612b4c61726176656c2b6170702e266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d63686576726f6e2d646f75626c652d7269676874)](https://camo.githubusercontent.com/6bfdcbff39658875d16faca28a6640b29f2207654042b7bd21bc8d8a39c36d00/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f42726561646372756d6273253230666f722532304c61726176656c2e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d726177696c6b2532466c61726176656c2d62726561646372756d6273267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d456173696c792b6164642b62726561646372756d62732b746f2b612b4c61726176656c2b6170702e266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d63686576726f6e2d646f75626c652d7269676874)

With Breadcrumbs for Laravel, you can easily add breadcrumbs to your Laravel applications. This package works very similar to the [breadcrumbs package created by James Mills](https://github.com/davejamesmiller/laravel-breadcrumbs). I created my own version of the package because that one has been abandoned, and I want to continue to provide this kind of functionality in my own Laravel apps.

Here's a simple example of how you can define breadcrumbs, and then render them in a view:

```
// somewhere in a file defined in config/breadcrumbs.php. default = 'view' => base_path('routes/breadcrumbs.php')
Breadcrumbs::for('home', function (Generator $trail) {
    $trail->push('Home', route('home'));
});

// Home > About
Breadcrumbs::for('about', function (Generator $trail)  {
    $trail->parent('home')->push('About', route('about'));
});
```

```

{!! Breadcrumbs::render('about') !!}
```

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

[](#installation)

You can install the package via composer:

```
composer require rawilk/laravel-breadcrumbs
```

You can publish the config file with:

```
php artisan vendor:publish --tag="breadcrumbs-config"
```

You can view the default configuration here:

Documentation
-------------

[](#documentation)

For more documentation, please visit:

Testing
-------

[](#testing)

On a fresh install, run the setup bin script first, otherwise certain DOM assertions won't work.

```
./bin/setup.sh
```

For convenience, a composer script is setup to run the pest test suite in parallel.

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Randall Wilk](https://github.com/rawilk)
- [Dave James Miller](https://github.com/davejamesmiller/laravel-breadcrumbs)
- [All Contributors](../../contributors)

Disclaimer
----------

[](#disclaimer)

This package is not affiliated with, maintained, authorized, endorsed or sponsored by Laravel or any of its affiliates.

License
-------

[](#license)

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

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity30

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity74

Established project with proven stability

 Bus Factor1

Top contributor holds 84.8% 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 ~104 days

Recently: every ~36 days

Total

10

Last Release

1202d ago

Major Versions

1.0.1 → 2.0.02020-10-26

2.0.0 → 3.0.02020-12-01

v3.0.1 → v4.0.02022-10-27

v1.x-dev → v2.x-dev2023-03-20

v2.x-dev → v3.x-dev2023-03-20

PHP version history (4 changes)1.0.0PHP ^7.4

3.0.0PHP ^8.0

v4.0.0PHP ^8.1

v4.0.1PHP ^8.1|^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/1e2f599d4d290bbb514a933d4f21c3f18fb093f5f8a9994cb17f5469853c749c?d=identicon)[rawilk](/maintainers/rawilk)

---

Top Contributors

[![rawilk](https://avatars.githubusercontent.com/u/22842525?v=4)](https://github.com/rawilk "rawilk (128 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (14 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")[![jbajou](https://avatars.githubusercontent.com/u/9249644?v=4)](https://github.com/jbajou "jbajou (1 commits)")

---

Tags

breadcrumbsbreadcrumbslaravel-breadcrumbs

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/rawilk-laravel-breadcrumbs/health.svg)

```
[![Health](https://phpackages.com/badges/rawilk-laravel-breadcrumbs/health.svg)](https://phpackages.com/packages/rawilk-laravel-breadcrumbs)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M151](/packages/laravel-mcp)[api-platform/laravel

API Platform support for Laravel

58171.6k14](/packages/api-platform-laravel)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.8k3](/packages/defstudio-telegraph)[nativephp/mobile

NativePHP for Mobile

1.1k75.1k91](/packages/nativephp-mobile)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

44855.7k](/packages/harris21-laravel-fuse)

PHPackages © 2026

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