How to configure breadcrumbs url on manage related records
i have 2 models, forms & responses.
a form has a page where the user can manage its responses (App\Filament\Resources\FormResource\Pages\ManageResponses)
ive managed to put the record name in the breadcrumb setting up, in the App\Filament\Resources\FormResource, the recordtitleatribute -
protected static ?string $recordTitleAttribute = 'name';
if u see the img, u can see the breadcrumb:
1- Forms
2- My form name
3- Responses
4- List
if i click:
1- Forms - it brings me to /admin/forms, okay
2- My form name - it brings me to # - why and how to make it to go to /admin/forms/23/edit?
3- Responses - it brings me to /admin/forms/23/responses, okay
4- List - it brings me to # - why and how to make it to go to /admin/forms/23/responses?0 Replies