How do I add an IN
clause in laravel with backpack?
This is what I am looking for:
$this->crud->addClause('where', 'customer_id', 'in', [1,3,5,6,7]);`
Should translate into something like this:
select * from customer where customer_id in (1,3,5,6,7);