How to sort resource table into latest()?

I'm trying to set the default of data of my resource table to be latest or orderByDesc but its not working


protected function getTableQuery(): Builder
    {
        return Activity::query()->latest();
    }

am I missing something?
Solution
Or just use ->defaultSort()
Was this page helpful?