我有一个表total_count
,其结构如下:
id studid month year acls_id total_p total_a
1 30 08 2015 12 5 2
2 35 08 2015 12 5 2
3 52 08 2015 12 5 2
4 53 08 2015 12 5 2
5 54 08 2015 12 5 2
6 55 08 2015 12 5 2
7 30 09 2015 12 3 0
在我的视图页面中,此表格显示了所有studid
及其详细信息的列表。
这是我在controller.php中的编辑方法:
foreach ($student as $student) {
$queryt= DB::table($wys_attendence_table)->where('studid', $student->id)
->where('adate', $date_exploded[0])
->where('amonth', $date_exploded[1])
->where('ayear', $date_exploded[2])
->update(array(
'attendence'=>Input::get($student->id),
));
}
我的编辑功能有效。
$lastUpdatedId= $queryt->id;
$lastUpdatedStudid= $queryt->studid;
var_dump($lastUpdatedId);
var_dump($lastUpdatedStudid);
不起作用..
如何获取并显示更新的字段id
和studid
值。
例如:如果我正在修改studid
= 30且studid
= 52,
我想显示id
= 1,3和studid
= 30,52。