sitesense/breadcrumb

Simple breadcrumbs for Laravel >= 5.5

Maintainers

Package info

github.com/sitesense/laravel-5-breadcrumbs

pkg:composer/sitesense/breadcrumb

Statistics

Installs: 19

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

dev-master 2018-10-06 20:14 UTC

This package is auto-updated.

Last update: 2026-03-07 19:03:40 UTC


README

Breadcrumb Example

Simple customizable breadcrumbs for Laravel >= 5.5

Uses your URL segments to automatically create your breadcrumbs with zero configuration.

The breadcrumbs use the default Bootstrap 4 styling. If you wish to change this you can edit the published view.

Installation

Require the package with composer:

composer require sitesense/breadcrumb

Publish the partial view file which will save to '/resources/views/partials/_breadcrumbs.blade.php':

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

Usage

Place this in your views where you would like the breadcrumbs to appear:

@include('partials._breadcrumbs')