Skip to content

Commit

Permalink
Merge pull request #34 from Formfeed-UK/v3
Browse files Browse the repository at this point in the history
V3
  • Loading branch information
ianrobertsFF committed Apr 25, 2023
2 parents 44501bb + c274584 commit 925af66
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Breadcrumbs.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,12 @@ protected function resourceBreadcrumbs(NovaRequest $request, $resource, $breadcr
}

protected function rootBreadcrumb(NovaRequest $request) {
$rootBreadcrumb = Breadcrumb::make(__("Home"), "/");
if (!is_null(static::$rootBreadcrumbCallback)) {
return Arr::wrap(call_user_func_array(static::$rootBreadcrumbCallback, [$request, $this, Breadcrumb::make(__("Home"), config('nova.path', "/nova"))]));
return Arr::wrap(call_user_func_array(static::$rootBreadcrumbCallback, [$request, $this, $rootBreadcrumb]));
}

return [Breadcrumb::make(__("Home"), config('nova.path', "/nova"))];
return [$rootBreadcrumb];
}

public function findResource(NovaRequest $request) {
Expand Down

0 comments on commit 925af66

Please sign in to comment.