I\'m in the process of converting one of our web applications from CodeIgniter to Laravel. However at this moment we don\'t want to add the updated_at / c
updated_at
c
You can temporarily disable timestamps
$timestamps = $user->timestamps; $user->timestamps=false; // avoid view updating the timestamp $user->last_logged_in_at = now(); $user->save(); $user->timestamps=$timestamps; // restore timestamps