From 7fa03caffc8b04b8111a744335fd433d31803464 Mon Sep 17 00:00:00 2001 From: kent Date: Tue, 30 Dec 2025 22:37:00 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=9A=8C=EC=82=AC=EC=A0=95=EB=B3=B4=20?= =?UTF-8?q?=EB=A1=9C=EA=B3=A0=20=EC=82=AD=EC=A0=9C=20=EA=B8=B0=EB=8A=A5=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 - TenantUpdateRequest에 logo 필드 규칙 추가 - logo: null 전송 시 validated()에서 무시되던 문제 해결 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/Http/Requests/Tenant/TenantUpdateRequest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Http/Requests/Tenant/TenantUpdateRequest.php b/app/Http/Requests/Tenant/TenantUpdateRequest.php index ad3466a..2893181 100644 --- a/app/Http/Requests/Tenant/TenantUpdateRequest.php +++ b/app/Http/Requests/Tenant/TenantUpdateRequest.php @@ -21,6 +21,7 @@ public function rules(): array 'address' => 'nullable|string|max:255', 'business_num' => 'nullable|string|max:20', 'ceo_name' => 'nullable|string|max:100', + 'logo' => 'nullable|string|max:255', // 확장 필드 (JSON) 'options' => 'nullable|array', 'options.business_type' => 'nullable|string|max:100',