feature #8

Merged
XiaoLFeng merged 32 commits from feature into master 2023-06-29 13:25:35 +08:00
Showing only changes of commit 06c6b57ad6 - Show all commits

View File

@ -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()