$query = DB::table('users')->whereAge(18);
foreach ((array) $query->wheres as $key => $where)
{
if ($where['column'] == 'age')
{
unset($query->wheres[$key]);
$query->wheres = array_values($query->wheres);
}
}