I noticed when i use eloquent update() method it also updates dirty column:
$user = User::find(1);
$user->is_admin = 1;
$user->update(['first_name' => 'Alex']);
//is_admin updated to 1 !
Shouldn't it only update first_name column?
What eloquent method only updates the given fields and ignores dirty columns ?
Note that I know about refresh and fresh methods which adds additional query which is not the method I look for.