Home  >  Q&A  >  body text

How to implement numeric value length limit in Laravel 10?

<p>Is this the correct way to validate a numeric value in a tinyint(4) field? </p> <p>This is the command I'm currently using</p> <pre class="brush:php;toolbar:false;">['required', 'numeric', 'max:4']</pre>
P粉899950720P粉899950720461 days ago635

reply all(1)I'll reply

  • P粉204136428

    P粉2041364282023-08-10 11:30:48

    According to Laravel Documentation, you can use max_digits:

    ['required', 'numeric', 'max_digits:4']

    reply
    0
  • Cancelreply