Update Only Update_at Field di Laravel Fasih

//instead of
$user->updated_at = DB::raw('NOW()');
$user->save();

// simply this:
$user->touch();
Cooperative Crab