How to implement numeric value length limit in Laravel 10?
P粉899950720
2023-08-09 14:49:31
<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>
According to Laravel Documentation, you can use
max_digits
: