From 7ff6f3a57c272dbb2b246b4834c377988f92bc73 Mon Sep 17 00:00:00 2001 From: kent Date: Thu, 25 Dec 2025 20:46:23 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20CardService=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EC=A1=B4=EC=9E=AC=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8A=94=20Use?= =?UTF-8?q?r=20=EA=B4=80=EA=B3=84=20=EC=A0=9C=EA=B1=B0=20(department,=20po?= =?UTF-8?q?sition)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/CardService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/CardService.php b/app/Services/CardService.php index e8a545c..9e1243d 100644 --- a/app/Services/CardService.php +++ b/app/Services/CardService.php @@ -17,7 +17,7 @@ public function index(array $params): LengthAwarePaginator $query = Card::query() ->where('tenant_id', $tenantId) - ->with(['assignedUser:id,name,email', 'assignedUser.department', 'assignedUser.position']); + ->with(['assignedUser:id,name,email']); // 검색 필터 if (!empty($params['search'])) {