TextInput::make('cost_price')->prefix('€')->mask(RawJs::make(<<<'JS' $money($input, ',', '.', 4)JS)),
money()
TextInput::make('sales_price') ->placeholder('€') ->mask(RawJs::make(<<<JS function x(input) { return input.startsWith('34') || input.startsWith('37') ? '9999 999999 99999' : '9999 9999 9999 9999' } JS )),