modify resource breadcrumbs
has anyone modified breadcrumbs before?
i didn’t want to disble all of them i just want some of them are modify
please help, thanks.
2 Replies
You can override the getBreadcrumbs() method on any of your resource pages.
public function getBreadcrumbs(): array
{
return [
route('home') => 'Go Home',
// Add more
];
}
big thanks dude