You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed & Setup this package as per instructions and installed Tabuna package
Here is my sample route: Route::get('settings/{slug}/edit', [SettingsController::class, 'edit']) ->breadcrumbs(fn (Trail $trail) => $trail->push('Home', route('home')) );
But it is not giving any route to display in vueJs file.
Iam using Laravel 10 and Vue3
Any additional steps to work this package?
Thanks,
Adi
The text was updated successfully, but these errors were encountered:
The package should share the breadcrumbs for that route in the breadcrumbs prop. So when you visit /settings/[...]/edit it would share the breadcrumbs for that page. You can use Vue devtools to check if the props are present.
If it's still not working as expected, could you share a minimal reproduction? Preferably a repo with a fresh Laravel app, having a separate commit for the changes you'd make to add the breadcrumbs.
Hmm, seems like this is happening because the Tabuba middleware is executed after the middleware from this package. I'll have to see and figure out how to fix it.
I have installed & Setup this package as per instructions and installed Tabuna package
Here is my sample route:
Route::get('settings/{slug}/edit', [SettingsController::class, 'edit']) ->breadcrumbs(fn (Trail $trail) => $trail->push('Home', route('home')) );
But it is not giving any route to display in vueJs file.
Iam using Laravel 10 and Vue3
Any additional steps to work this package?
Thanks,
The text was updated successfully, but these errors were encountered: