has method
Query with relationship count
Implementation
@override
QueryBuilderInterface<T> has(
String relation, [
String operator = '>=',
int count = 1,
]) {
return whereHas(relation, null, operator, count);
}
Query with relationship count
@override
QueryBuilderInterface<T> has(
String relation, [
String operator = '>=',
int count = 1,
]) {
return whereHas(relation, null, operator, count);
}