Forms\Components\TextInput::make('price')
->prefixIcon('heroicon-o-currency-euro')
->formatStateUsing(fn ($state) => str_replace('.', ',', $state))
->mask(Support\RawJs::make('$money($input, \',\', \' \', 2)'))
->stripCharacters(' ')
->dehydrateStateUsing(fn ($state) => str_replace(',', '.', $state))
->columnSpan([
'default' => 1,
])
->required(self::requiredConcept()),
Forms\Components\TextInput::make('price')
->prefixIcon('heroicon-o-currency-euro')
->formatStateUsing(fn ($state) => str_replace('.', ',', $state))
->mask(Support\RawJs::make('$money($input, \',\', \' \', 2)'))
->stripCharacters(' ')
->dehydrateStateUsing(fn ($state) => str_replace(',', '.', $state))
->columnSpan([
'default' => 1,
])
->required(self::requiredConcept()),