How to increment and update column in one eloquent query

Is it possible to update a timestamp (besides updated_at) and increment a column in one query? I obviously can ->increment('count') and separately ->update(['last_count_increased_at' => C...