Iam trying to use addclause, but instead of use a filter in my where that get only one value, I need to use a list of values, like this
$this->crud->addClause('where', 'customer_id', 'in', [1,3,5,6,7]);
Its possible? how to make it happen?
thanks in advance.