Persist sort order

Hi. Can user selected sort be persisted on an relationshipManager table?
Thanks
Solution
Maybe this functionality was added later? But this is plain Filament:
// Resource class
    public static function table(Table $table): Table
    {
        return $table
            ->persistFiltersInSession()
            ->persistSortInSession()
            ->persistSearchInSession()
        // ...
    }
Was this page helpful?