php - Phalcon model FindFirst on NULL values
one text
Solution:
This is what I would personally do
$model = MyModel::findFirst(['field is null']);
Sourceone text
This is what I would personally do
$model = MyModel::findFirst(['field is null']);
Source