Forms\Components\TextInput::make('premium')
->nullable()
->numeric()
->inputMode('decimal')
->prefix(__('$'))
->rules([
'max:999999.99',
])
->mask(RawJs::make('$money($input)'))
->stripCharacters(','),
Forms\Components\TextInput::make('premium')
->nullable()
->numeric()
->inputMode('decimal')
->prefix(__('$'))
->rules([
'max:999999.99',
])
->mask(RawJs::make('$money($input)'))
->stripCharacters(','),