How to customize Breadcrumb label
I try to customize breadcrumb label in list page. I've tries :
I also try to search in documentation but only found
How to disabled breadcrumb
. and Blade Component - Breadcrumb
.
Also try to look at the ListResource
methods but only found getBreadcrumbs()
with return string.
Is there any way to modify the breadcrumb?Solution:Jump to solution
Solved. I was expecting the breadcrumb will be an array and we will set in Main resource class.
It turned out to be string and we can set at each resource class. like this :
```php
//App/Filament/Resource/KaryawanResource.php...
1 Reply
Solution
Solved. I was expecting the breadcrumb will be an array and we will set in Main resource class.
It turned out to be string and we can set at each resource class. like this :
And it give me an exact return that I expected.