PHPackages                             mares29/laravel-breadcrumb - 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. mares29/laravel-breadcrumb

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

mares29/laravel-breadcrumb
==========================

Breadcrumb for Laravel

1.1(4y ago)093MITPHP

Since Jan 23Pushed 4y ago1 watchersCompare

[ Source](https://github.com/mares29/laravel-breadcrumb)[ Packagist](https://packagist.org/packages/mares29/laravel-breadcrumb)[ Docs](https://github.com/mares29/laravel-breadcrumb)[ RSS](/packages/mares29-laravel-breadcrumb/feed)WikiDiscussions master Synced today

READMEChangelog (2)DependenciesVersions (3)Used By (0)

Breadcrumb for Laravel 5
========================

[](#breadcrumb-for-laravel-5)

This package provide simple way to implement breadcrumb for your laravel 5 application.

Install
-------

[](#install)

Via Composer

```
$ composer require mares29/laravel-breadcrumb
```

Laravel 5.5+ automaticly register service provider and set Alias thanks to auto-discovery. With lower laravel version add to **app.php**

```
'providers' => [
	\Mares29\Breadcrumb\BreadcrumbServiceProvider::class,
]

'aliases' => [
	'Breadcrumb' => \Mares29\Breadcrumb\Facades\BreadcrumbFacade::class,
]
```

Usage
-----

[](#usage)

Use Facade to add breadcrumb links.

```
Breadcrumb::addLink("link title", "link route");
```

You can also add more links.

```
Breadcrumb::addLink("link title", "link route")
	->addLink("another link title", "link route");
```

And finaly render breadcrumb using render method in blade template.

```
{!! Breadcrumb::render() !!}
```

By default, first link (home link) is set automaticly with `config('app.name')` and links to `url("/")`. You can modify this by

```
Breadcrumb::setHomeLink("new home link", "/home.html");
```

**Need to modify breadcrumb html?** Use `vendor:publish` command and export breadcrumb view into resources folder.

```
php artisan vendor:publish --provider="Mares29\Breadcrumb\BreadcrumbServiceProvider"

```

Credits
-------

[](#credits)

- [Karel Mares](https://github.com/mares29)

License
-------

[](#license)

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

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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 ~1455 days

Total

2

Last Release

1573d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a9c885c618a28b3de957057540b68b0dd6370d7810ba27c9a732e6e1c07378ad?d=identicon)[mares29](/maintainers/mares29)

---

Top Contributors

[![mares29](https://avatars.githubusercontent.com/u/2098828?v=4)](https://github.com/mares29 "mares29 (1 commits)")

---

Tags

breadcrumbslaravellaravel-5-packagelaravel-packagelaravelbreadcrumbmares29

### Embed Badge

![Health badge](/badges/mares29-laravel-breadcrumb/health.svg)

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

###  Alternatives

[fragkp/laravel-route-breadcrumb

7011.7k](/packages/fragkp-laravel-route-breadcrumb)[stephenjude/filament-blog

Filament Blog Builder

20317.8k](/packages/stephenjude-filament-blog)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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