In datatable editor IN where clause how to give multiple values?
In datatable editor IN where clause how to give multiple values?
aruncraftsion
Posts: 3Questions: 3Answers: 0
eg:
i need to give three pincode in where condition
->where( function ( $q )use ($pincode) {
$q->where( 'pincode',600011,600021,600024,'=');
} )
This discussion has been closed.
Answers
Hi @aruncraftsion ,
You should be able to
or_where
there, see page here.So something like:
Cheers,
Colin
Duplicate of this thread.