Points with decimal
How to make automatic decimal(5,2)
i need put 12345 and automatic convert to 123.45 prefer in real time, but no problem if show after finish write. public static function form(Form $form): Form { return $form ->schema([ Forms\Components\TextInput::make('pontos') ->required() ->numeric() ->minValue(0),
i need put 12345 and automatic convert to 123.45 prefer in real time, but no problem if show after finish write. public static function form(Form $form): Form { return $form ->schema([ Forms\Components\TextInput::make('pontos') ->required() ->numeric() ->minValue(0),
4 Replies
Use money as per the docs?
Heres a good guide by LaravelDaily
https://laraveldaily.com/post/filament-money-columns-storing-value-in-cents
Laravel Daily
Filament: Money Columns and Storing Value in Cents
How to use on form, to update when is typing?