chris-ware / nova-breadcrumbs

Breadcrumbs for Laravel Nova
152 stars 44 forks source link

Hide dashboard name when only one main dashboard #110

Closed DanielLavoie90 closed 3 years ago

DanielLavoie90 commented 3 years ago

Since nova doesn't permit renaming the default dashboard 'main' to something else, I've modified the controller to only show the name of the dashboard if their is multiple dashboards in the project.

NovaBreadcrumbsController.php line 65

if (count(Nova::availableDashboards($request)) >= 1) {
    $this->appendToCrumbs(__(Str::title($request->get('name'))), $pathParts->slice(0, 3)->implode('/'));
}
chris-ware commented 3 years ago

@DanielLavoie90 Thanks for this, I've implemented this into the next release.