ビュー ファイルのボタンをクリックして、データをデータベースに保存したいと考えています。
POST 経由でコントローラーのメソッドを呼び出すことで、これを実現したいと考えています。それは機能しますが、いくつかの変数/パラメーターを ( inputfields なしで) コントローラーに渡す必要があり、機能しません。
これは私のコントローラーです:
class CouplesController extends BaseController {
public function postCreate($var1)
{
Couple::create(array(
'name'=>'test',
'id1'=>$var1
));
return Redirect::to('couples')
->with('message','Your couple was created successfully!');
}
}
これが私の見解です:
{{ Form::open(array('action' => 'CouplesController@postCreate', $var1->'hello')) }}
<p>{{ Form::submit('Create') }}</p>
{{ Form::close() }}
おそらく私はこれを完全に間違っています。これを行う方法がわかりません。
ところで、POST メソッドである必要はありません。