Forms\Components\TextInput::make('price')
->columnSpan(['default' => 2])
->placeholder('0.00')
->mask(RawJs::make(<<<'JS'
$money($input, '.', ' ')
JS))
->numeric()
->inputMode('decimal')
->required()
Forms\Components\TextInput::make('price')
->columnSpan(['default' => 2])
->placeholder('0.00')
->mask(RawJs::make(<<<'JS'
$money($input, '.', ' ')
JS))
->numeric()
->inputMode('decimal')
->required()