diff --git a/app/Http/Controllers/Function/Link.php b/app/Http/Controllers/Function/Link.php index dc594fd..0acf056 100644 --- a/app/Http/Controllers/Function/Link.php +++ b/app/Http/Controllers/Function/Link.php @@ -143,7 +143,7 @@ public function apiCustomSearch(Request $request): JsonResponse ->where([ ['blogName', 'LIKE', '%' . $request->location_search . '%', 'or'], ['blogUrl', 'LIKE', '%' . $request->location_search . '%', 'or'], - ['blogOwnEmail', 'LIKE', '%' . $request->location_search . '%', 'or']]) + ['blogOwnEmail', '=', $request->location_search, 'or']]) ->select('blogName','blogUrl','blogDescription','blogIcon') ->orderBy('id') ->get()