Linking Between Table Views with a Filter Value

I am relatively new to Filament. I am wanting to create an action that will link from one Table Resource to another in filament, but I want to pass through a filter value in the link so the 2nd table resource is only showing the records that I want shown based on the filter I pass through. I can't see anywhere in the documentation about this.
Solution
I think this should work:
route('filament.admin.resources.event-survey-sections.index', [
    'tableFilters' => [
        'event_survey_id' => [
            'value' => $record->id,
        ],
    ],
])
Was this page helpful?