added LIKE query for filter accepted_by

This commit is contained in:
ilmedova 2022-11-19 01:36:16 +05:00
parent 239e78a525
commit 60108a28f5
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ function ($value) { // if the filter is active, apply these constraints
],
false,
function ($value) {
$this->crud->addClause('where', 'accepted_by', $value);
$this->crud->addClause('where', 'accepted_by', 'LIKE', '%' . $value . '%');
});
}