标签: php mysql sql laravel laravel-eloquent
我正在尝试使用结帐时间更新所有选定员工的出勤列John Jen James Joe 。在outtime登记时间成功存储在数据库中,但是我遇到了更新问题。我做了类似下面的事情,但它更新了唯一的第一行。什么应该写的查询会有人帮助我吗?
John Jen James Joe
outtime
AttendanceController.php
intime
答案 0 :(得分:1)
使用此:
whereIn('employee_id', $employeeIds)