From 01f4aa018f963e8088aac47ef3d002ff8dcefa6a Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Thu, 16 Nov 2023 11:20:14 -0800 Subject: [PATCH] fixed query --- app/Models/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/User.php b/app/Models/User.php index e72053d06d..c6d8d993a2 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -794,7 +794,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo return $query->where('location_id','=', $location) ->where('first_name', 'LIKE', '%' . $search . '%') ->orWhere('email', 'LIKE', '%' . $search . '%') - ->orWhere('first_name', 'LIKE', '%' . $search . '%') + ->orWhere('last_name', 'LIKE', '%' . $search . '%') ->orWhere('permissions', 'LIKE', '%' . $search . '%') ->orWhere('country', 'LIKE', '%' . $search . '%') ->orWhere('phone', 'LIKE', '%' . $search . '%')