has method

  1. @override
QueryBuilderInterface<T> has(
  1. String relation, [
  2. String operator = '>=',
  3. int count = 1
])
override

Query with relationship count

Implementation

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