2017-12-25 10 views
2

私はこのコード13桁の長さに長さを制限する方法設定MAXLENGTH ::数(

{{ Form::number('amount', (isset($logged_in_user->paymentConfirmation->amount) ? floor($logged_in_user->paymentConfirmation->amount) : null), ['class' => 'form-control', 'maxlength' => '13','step' => '1']) }} 

を持っている?

+0

タイプNUMBERのINPUTを生成している場合は、 'maxlength' => '13'を 'max' => '9999999999999'に置き換えてください – Jason

答えて

0

Laravel集団フォームはForm::number<input type="number">としての要素をレンダリングします。あなたが使用する必要があるのでmaxここで、それは価値が最大許容整数である必要があります。

{!! Form::number('amount', (isset($logged_in_user->paymentConfirmation->amount) ? floor($logged_in_user->paymentConfirmation->amount) : null), ['class' => 'form-control', 'max' => '9999999999999', 'step' => '1']) !!} 

https://www.w3schools.com/tags/att_input_max.asp

関連する問題