F
Filament2mo ago
lbar

breadcrumb never disappear completely

Dear, why the last part of the breadcrumb of my resource never disappear? (screenshot) Also if I did this in my resources
public static function getBreadcrumb(): string
{
return '';
}
public static function getBreadcrumb(): string
{
return '';
}
ty
No description
Solution:
I think you would need to do something like: ```php public function getBreadcrumbs(): array {...
Jump to solution
2 Replies
Solution
dissto
dissto2mo ago
I think you would need to do something like:
public function getBreadcrumbs(): array
{
return [];
}
public function getBreadcrumbs(): array
{
return [];
}
for each of the pages like ListXXX.php, CreateXXX.php, EditPHP.php etc. do disable the breadcrumbs 🤔
lbar
lbarOP2mo ago
yeah. this did the trick. thank you

Did you find this page helpful?