wherePast method
WHERE column is in the past
Implementation
@override
QueryBuilderInterface<T> wherePast(String column) {
return whereRaw('${grammar.wrap(column)} < NOW()');
}
WHERE column is in the past
@override
QueryBuilderInterface<T> wherePast(String column) {
return whereRaw('${grammar.wrap(column)} < NOW()');
}