I just want to select all fields except one field in cakephp 3.
Ex. $this->select(\'fname\', \'lname\', \'mname\', \'email\', \'password\', \'status\', \'crea
You could just find all and then at runtime hide what you dont need
$model->hiddenProperties(['modified', 'created']);