This is what I currently have:
$query->orderBy('id', 'DESC')
->where('totalColorless', '!=', 0) // currently removes all of these...
->where('totalResidual', '!=', 0) // ...and all of these
->get();
How can I make it so it removes rows which fulfill both WHERE criteria at the same time?