ドキュメントを読んだらOK:http://four.laravel.com/docs/html#form-model-binding
次のようなフォームがあります。
{{ Form::model($profile, array('action' => 'ProfilesController@edit', $profile->user_id, 'files' => true)) }}
{{ Form::select('gender', array('0' => 'What gender are you?', '1' => 'Male', '2' => 'Female'), array('class' => 'span12')) }}
{{ From::close() }}
私の問題は、モデル バインディングが Form::select で機能せず、テキスト入力でうまく機能することです。私は何を間違っていますか??
ご協力いただきありがとうございます。