From 8f8eae92f2c020d4cfd343d6000c3cec3f6921a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EB=B3=91=EC=B2=A0?= Date: Wed, 18 Mar 2026 21:13:24 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[bending]=20=ED=92=88=EB=AA=A9=20resolve?= =?UTF-8?q?Item=20eager=20loading=20=EC=BB=AC=EB=9F=BC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - item 관계 로드 시 specification → attributes로 변경 Co-Authored-By: Claude Opus 4.6 (1M context) --- app/Services/BendingCodeService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/BendingCodeService.php b/app/Services/BendingCodeService.php index f360b449..89758c12 100644 --- a/app/Services/BendingCodeService.php +++ b/app/Services/BendingCodeService.php @@ -136,7 +136,7 @@ public function resolveItem(string $prodCode, string $specCode, string $lengthCo ->where('spec_code', $specCode) ->where('length_code', $lengthCode) ->where('is_active', true) - ->with('item:id,code,name,specification,unit') + ->with('item:id,code,name,attributes,unit') ->first(); if (! $mapping || ! $mapping->item) {