How to hide breadcrumb of certain resource?

I want to hide breadcrumb of certain resource not all if my resources, i want hide it by using css but seems it doesn't have any specific class, any suggestion?
2 Replies
Lara Zeus
Lara Zeus12mo ago
add this to the page you want to hide the Breadcrumbs for example the listUsers class
public function getBreadcrumbs(): array
{
return [];
}
public function getBreadcrumbs(): array
{
return [];
}
03_dotuan
03_dotuanOP12mo ago
thank you for quick reply, it worked 😍

Did you find this page helpful?