nova-breadcrumbs icon indicating copy to clipboard operation
nova-breadcrumbs copied to clipboard

Augments Nova 4 Breadcrumbs with nesting and resource/static override methods

Results 9 nova-breadcrumbs issues
Sort by recently updated
recently updated
newest added

Nova version: [v4.32.15 (Silver Surfer)](https://nova.laravel.com/releases/4.32.15) ```php public function resourceBreadcrumbs(NovaRequest $request, Breadcrumbs $breadcrumbs, array $breadcrumbArray) { Log::info('resourceBreadcrumbs' , ['request' => $request, 'breadcrumbs' => $breadcrumbs, 'breadcrumbArray' => $breadcrumbArray]); $breadcrumbs->items = [Breadcrumb::make('Home', '/')];...

Hi, I've just upgraded my Nova to r4.27 and now I get error 500 "Target class [] does not exist." on custom tools. It occurs with my custom tools and...

`route()->getController()` is completely unsafe to use if the route uses a closure, and route()->isControllerAction() is protected. This leads to errors like `BindingResolutionException: Target class [] does not exist.` if a...

This fixes an error in while trying to visit a dashboard (or lens) that you don't have access to. The functions should return an array to allow array_merge to work...

The config says that the config value is `titleProperty` but the code actually uses the config `title` instead. https://github.com/Formfeed-UK/nova-breadcrumbs/blob/main/config/nova-breadcrumbs.php#L76 https://github.com/Formfeed-UK/nova-breadcrumbs/blob/main/src/Breadcrumb.php#L149

First of all - thanks for this great package! Is it possible to somehow remove the relationship in the breadcrumb? I've tried it with modifying the config as well as...

enhancement

Would it make sense to add a node for the current lens when viewing a lens within a resource to the breadcrumb?

Adds a type check to ensure $controller is a string before calling class_exists(), preventing errors when Nova tools or cached routes return non-string values.