i need to generate the columns dinamically. ```php public static function table(Table $table): Table { return $table ->query(Response::latest()) ->columns((function (): array { // here i need to retrieve the record to be able to costumize the columns $record = ?? ... ``` is this possible?