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>