私は自分のウェブプロジェクトに使用laravel
しています。私は持っていsummernote wysiwyg editor
ます。今、私はそれの価値を読み取ろうとしています。これが私のコードです:
{{Form::open(array('url'=>'admin/info/opvoedingsproject/edit'))}}
<input type="text" name="title" >
<textarea name="description" id="description" class="form-control"></textarea>
<br />
<button type="submit" class="btn btn-green">Bewaar</button>
{{Form::close()}}
タイトル入力の値を取得しますが、テキストエリアの値は取得しません。これは私が得るものですInput::all()
array(4) { ["_token"]=> string(40) "YRDSqwzZrxvs2DvU1AiuGlDDHkobhIWLaYbnUlOo" ["title"]=> string(10) "test title" ["description"]=> string(0) "" ["files"]=> string(0) "" }
助けはありますか?
ありがとう !