This package automatically shares breadcrumbs as Inertia props in a standardized way, with support for multiple breadcrumb packages.
You can install the package via composer:
composer require robertboes/inertia-breadcrumbs
You can publish the config file with:
php artisan vendor:publish --tag="inertia-breadcrumbs-config"
Next step is to install one of the following packages to manage your breadcrumbs:
Configure your breadcrumbs as explained by the package
Update your config/inertia-breadcrumbs.php
configuration to use the correct collector:
// diglactic/laravel-breadcrumbs
use RobertBoes\InertiaBreadcrumbs\Collectors\DiglacticBreadcrumbsCollector;
return [
'collector' => DiglacticBreadcrumbsCollector::class,
];
// tabuna/breadcrumbs
use RobertBoes\InertiaBreadcrumbs\Collectors\TabunaBreadcrumbsCollector;
return [
'collector' => TabunaBreadcrumbsCollector::class,
];
// glhd/gretel
use RobertBoes\InertiaBreadcrumbs\Collectors\GretelBreadcrumbsCollector;
return [
'collector' => GretelBreadcrumbsCollector::class,
];
No matter which third party package you're using, this package will always share breadcrumbs to Inertia in the following format:
[
{
title: "Dashboard",
url: "http://localhost/dashboard",
},
{
title: "Profile",
url: "http://localhost/dashboard/profile",
current: true,
}
]
An example to render your breadcrumbs in Vue 3 could look like the following:
<template>
<nav v-if="breadcrumbs">
<ol>
<li v-for="page in breadcrumbs">
<div>
<span v-if="page ==='/'">/</span>
<a
v-else
:href="page.url"
:class="{ 'border-b border-blue-400': page.current }"
>{{ page.title }}</a>
</div>
</li>
</ol>
</nav>
</template>
<script>
import { usePage } from '@inertiajs/inertia-vue3'
import { computed } from 'vue'
export default {
setup() {
// Insert an element between all elements, insertBetween([1, 2, 3], '/') results in [1, '/', 2, '/', 3]
const insertBetween = (items, insertion) => {
return items.flatMap(
(value, index, array) =>
array.length - 1 !== index
? [value, insertion]
: value,
)
}
const breadcrumbs = computed(() => insertBetween(usePage().props.value.breadcrumbs || [], '/'))
return {
breadcrumbs,
}
},
}
</script>
glhd/gretel
shares the breadcrumbs automatically if it detects Inertia is installed and shares the props with the same key (breadcrumbs
). If you want to use this package with gretel you should disable their automatic sharing by updating the config:
// config/gretel.php
return [
'packages' => [
'inertiajs/inertia-laravel' => false,
],
];
composer test
Please see CHANGELOG for more information on what has changed recently.
- Create Vue 2/3 components
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.