sitesense/breadcrumb

Simple breadcrumbs for Laravel >= 5.5

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

This package is auto-updated.

Last update: 2024-10-07 16:04:20 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')