FFilament•Created by Rick Doetinchem on 2/19/2025 in #❓┊help How to format price in form?
Forms\Components\TextInput::make('price')
->label('Price')
->mask(RawJs::make('$money($input, \',\', \'.\')'))
->numeric()
->inputMode('decimal')
->stripCharacters(',')
->required()
->default(0)
->prefix('€')