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.
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"
Place this in your views where you would like the breadcrumbs to appear:
@include('partials._breadcrumbs')