0
私はブレードテンプレートを持っています。ここでは、複数のオプションoption[]
を動的ドロップダウンで追加できます。複数の結果を追加しないメソッドを作成
I出力は、アレイは、(修正)を示す場合:
array:3 [▼
0 => "sdfsdfsdf"
1 => "sdfsdfsdflj"
2 => ""
]
上記入力action_points
テーブル内の列point
に関する。上記表の
モデル:
protected $fillable = [
'audit_score_id', 'point', 'actioned',
];
public function audit()
{
return $this->belongsTo(AuditScore::class);
}
テーブルはbelongsTo
関係があり、従って、各行はaudit_score_id
列を有しています。
point
の情報を保存するだけでなく、audit_score_id
を保存します。
Iは、以下の機能を使用する場合、1つだけの空の行がテーブル内に保存されている:
$actions = $request->get('option');
$item = array();
foreach ($actions as $action) {
$item = ([
'point' => $action,
]);
}
$audit = AuditScore::find($id);
$audit->actionPoints()->create($item);
保存行:
id audit_score_id point actioned
5 32 0
すべてのヘルプは非常に高く評価されるだろう。
多くのありがとうございます。