Search with 3 characters in products name and 5 charcters in descriptiom
Some checks are pending
deploy / deploy (push) Waiting to run
Some checks are pending
deploy / deploy (push) Waiting to run
This commit is contained in:
@@ -26,7 +26,9 @@ class IkeaProducts extends Model
|
||||
|
||||
protected function search($item)
|
||||
{
|
||||
if (strlen($item) > 3) {
|
||||
if (strlen($item) >= 3 && strlen($item) <= 5) {
|
||||
return $this->where('name', 'LIKE', '%' . $item . '%')->get();
|
||||
} else if (strlen($item >= 5)) {
|
||||
return $this->where('typeName', 'LIKE', '%' . $item . '%')->orWhere('name', 'LIKE', '%' . $item . '%')->get();
|
||||
} else {
|
||||
return [];
|
||||
|
||||
Reference in New Issue
Block a user