我想知道如何更新一个模型,其中不监视isDirty()或updated_at的某些属性。在这种情况下,我有一个字段需要更新,而无需触及updated_at时间戳。
我找不到方法。
答案 0 :(得分:0)
您可以在进行更改时禁用时间戳记。
赞:
function saveDudeWithoutTimeStamps($userId) {
$user = User::find($userId);
$user->timestamps = false; // this one should do the trick
$user->email = 'blabla@example.com';
$user->save();
}