PHPackages                             shibuyakosuke/laravel-crud-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. [Admin Panels](/categories/admin)
4. /
5. shibuyakosuke/laravel-crud-breadcrumbs

ActiveLibrary[Admin Panels](/categories/admin)

shibuyakosuke/laravel-crud-breadcrumbs
======================================

Breadcrumbs for Laravel project

1.0.1(5y ago)17221MITPHP

Since Aug 22Pushed 4y ago1 watchersCompare

[ Source](https://github.com/ShibuyaKosuke/laravel-crud-breadcrumbs)[ Packagist](https://packagist.org/packages/shibuyakosuke/laravel-crud-breadcrumbs)[ RSS](/packages/shibuyakosuke-laravel-crud-breadcrumbs/feed)WikiDiscussions master Synced 2d ago

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

laravel-crud-breadcrumbs
========================

[](#laravel-crud-breadcrumbs)

Breadcrumbs package for Laravel7+

inspired by [dwightwatson/breadcrumbs](https://github.com/dwightwatson/breadcrumbs)

Install
-------

[](#install)

```
composer require shibuyakosuke/laravel-crud-breadcrumbs

```

Publish assets
--------------

[](#publish-assets)

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

```

Usage
-----

[](#usage)

Create a new file at routes/breadcrumbs.php to define your breadcrumbs. By default the package will work with named routes which works with resourceful routing. However, you're also free to define routes by the controller action/pair.

```
use App\Models\User;

Breadcrumbs::for('home', function ($trail) {
    $trail->add('Home', route('home'));
});

Breadcrumbs::for('users.index', function ($trail) {
    $trail->parent('home');
    $trail->add('Users', route('users.index'));
});

Breadcrumbs::for('users.show', function ($trail, User $user) {
    $trail->parent('users.index');
    $trail->add($user->name, route('users.show', $user));
});

Breadcrumbs::for('users.edit', function ($trail, User $user) {
    $trail->parent('users.show', $user);
    $trail->add('Edit', route('users.edit', $user));
});
```

Rendering the breadcrumbs
-------------------------

[](#rendering-the-breadcrumbs)

In your view file, you simply need to call the render() method wherever you want your breadcrumbs to appear. It's that easy. If there are no breadcrumbs for the current route, then nothing will be returned.

```
{{ Breadcrumbs::render() }}

```

You don't need to escape the content of the breadcrumbs, it's already wrapped in an instance of Illuminate\\Support\\HtmlString so Laravel knows just how to use it.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity56

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

Total

2

Last Release

2069d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7816825?v=4)[Kosuke Shibuya](/maintainers/ShibuyaKosuke)[@ShibuyaKosuke](https://github.com/ShibuyaKosuke)

---

Top Contributors

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

---

Tags

artisanbreadcrumbscrudlaravellaravelbreadcrumbs

### Embed Badge

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

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

###  Alternatives

[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[ibrahim-bedir/filament-dynamic-settings-page

272.0k1](/packages/ibrahim-bedir-filament-dynamic-settings-page)[lara-zeus/tartarus

simple multi tenants

112.6k](/packages/lara-zeus-tartarus)

PHPackages © 2026

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