From d49dc1d87886f1f65d691d5df8337f48b92a2a1c Mon Sep 17 00:00:00 2001 From: kent Date: Fri, 9 Jan 2026 21:26:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=88=98=EC=A3=BC=EA=B4=80=EB=A6=AC=20Q?= =?UTF-8?q?uote=20eager=20loading=20=ED=95=84=EB=93=9C=EB=AA=85=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - OrderService.php: quote_no → quote_number 수정 Co-Authored-By: Claude --- app/Services/OrderService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/OrderService.php b/app/Services/OrderService.php index 66abbd6..274c9b0 100644 --- a/app/Services/OrderService.php +++ b/app/Services/OrderService.php @@ -110,7 +110,7 @@ public function show(int $id) ->with([ 'client:id,name,business_no,representative,phone,email', 'items' => fn ($q) => $q->orderBy('sort_order'), - 'quote:id,quote_no,site_name', + 'quote:id,quote_number,site_name', ]) ->find($id);