How to format price in form?

How to show the price with 2 decimals after the comma?
No description
1 Reply
Leonardo Sartor
Hi, how are you? Forms\Components\TextInput::make('price') ->label('Price') ->mask(RawJs::make('$money($input, \',\', \'.\')')) ->numeric() ->inputMode('decimal') ->stripCharacters(',') ->required() ->default(0) ->prefix('€')

Did you find this page helpful?