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),
Was this page helpful?