Masking and using palceholder at same time
TextInput::make('amount')
->label('Amount being Charged')
->required()
->placeholder('0.00')
->numeric()
->minValue(1)
->mask(fn (Mask $mask) => $mask->money(prefix: '$', thousandsSeparator: ','))
])
i want to use placeholder and masking at the same time
but when i am using masking the placeholder doesn't work
->label('Amount being Charged')
->required()
->placeholder('0.00')
->numeric()
->minValue(1)
->mask(fn (Mask $mask) => $mask->money(prefix: '$', thousandsSeparator: ','))
])
i want to use placeholder and masking at the same time
but when i am using masking the placeholder doesn't work