How to export table with enum column?

Hello! I have column that maps to some enum. When I try to use formatStateUsing:
ExportColumn::make('lang')
                ->formatStateUsing(function (LanguageCode $code) {
                    return $code->value;
                }),


I receive error
[2024-04-22 22:36:01] local.ERROR: Target [App\Enums\LanguageCode] is not instantiable while building [Laravel\Horizon\Console\WorkCommand, Filament\Actions\Exports\Jobs\ExportCsv]. {"userId":1,"exception":"[object] (Illuminate\\Contracts\\Container\\BindingResolutionException(code: 0): Target [App\\Enums\\LanguageCode] is not instantiable while building [Laravel\\Horizon\\Console\\WorkCommand, Filament\\Actions\\Exports\\Jobs\\ExportCsv]

Is it possivle to fix it?
Was this page helpful?