0
現在のBladeコードにドロップダウンボックスを追加するにはどうすればよいですか?Laravel + Bladeを使用したドロップダウンボックスの追加
これは私が現在持っているものです。
{!! Form::input('text', 'example', old("example", $user->example), array('class' => 'form-control')) !!}
現在のBladeコードにドロップダウンボックスを追加するにはどうすればよいですか?Laravel + Bladeを使用したドロップダウンボックスの追加
これは私が現在持っているものです。
{!! Form::input('text', 'example', old("example", $user->example), array('class' => 'form-control')) !!}
はこれを試してみてください:
echo Form::select('size', array('L' => 'Large', 'S' => 'Small'), 'S', array('id' => 'your_id', 'class' => 'your_class'));
場所:
size
:ドロップダウンの名前、
array
:配列は、ドロップダウンリストを生成します、
S
:デフォルト選択値は、その後
あなたが渡すことができますように、アレイ内のid
、class
、style
:
array('id' => 'your_id', 'class' => 'your_class')