whereNull method
Add a where null clause.
DB.table('users').whereNull('deleted_at');
Implementation
QueryBuilder whereNull(String column) {
_wheres.add(_WhereClause(column, 'IS', null, isNull: true));
return this;
}
Add a where null clause.
DB.table('users').whereNull('deleted_at');
QueryBuilder whereNull(String column) {
_wheres.add(_WhereClause(column, 'IS', null, isNull: true));
return this;
}