-
초성검색 (ㄱ,ㄴ,ㄷ,ㅁ,ㅂ...)Laravel 2023. 4. 4. 15:13반응형SMALL
# What?
컬럼에 ㄱ, ㄴ같은 초성 포함여부 검색하기
# How?
if($char == "ㄱ") $items = Community::whereBetween("title", ["가", "깋"]); if($char == "ㄴ") $items = Community::whereBetween("title", ["나", "닣"]); if($char == "ㄷ") $items = Community::whereBetween("title", ["다", "딯"]); if($char == "ㄹ") $items = Community::whereBetween("title", ["라", "맇"]); if($char == "ㅁ") $items = Community::whereBetween("title", ["마", "밓"]); if($char == "ㅂ") $items = Community::whereBetween("title", ["바", "빟"]); if($char == "ㅅ") $items = Community::whereBetween("title", ["사", "싷"]); if($char == "ㅇ") $items = Community::whereBetween("title", ["아", "잏"]); if($char == "ㅈ") $items = Community::whereBetween("title", ["자", "짛"]); if($char == "ㅊ") $items = Community::whereBetween("title", ["차", "칳"]); if($char == "ㅋ") $items = Community::whereBetween("title", ["카", "킿"]); if($char == "ㅌ") $items = Community::whereBetween("title", ["타", "팋"]); if($char == "ㅍ") $items = Community::whereBetween("title", ["파", "핗"]); if($char == "ㅎ") $items = Community::whereBetween("title", ["하", "힣"]);
LIST'Laravel' 카테고리의 다른 글
429 error 안뜨게 하는법 (0) 2023.05.25 Laravel Excel FromView #excel #view #fromView #테이블 #table (0) 2023.04.30 유튜브 고유아이디 및 썸네일 url 얻기 #Youtube #유튜브 #썸네 (0) 2023.04.02 Laravel + nuxt 소셜로그인 #sanctum #social #로그인 #소셜 #vue #nuxt #api (0) 2023.03.23 Custom validation throw 하는법 (422 에러 throw) (0) 2023.03.23