How to Enum on TextColumn method?

TextColumn::make('agrupamento')
                    ->label('Agrupamento')
                    ->sortable(),


Select::make('agrupamento')
            ->required()
            ->options(PropertyAgrupament::class),


How method i need to use on TextColumn to get the same result of the select?
Was this page helpful?