If I have df like this
df <- read.table(text=\" id date paid_at binded_at 1 107 2016-12-16 2017-06-02 2017-06-07 2
df %>% select(id, paid_at, everything())
You can just select id and paid_at, and then add everything() to select all other columns as well in their original order.
id
paid_at
everything()