fix: 회사정보 로고 삭제 기능 수정

- TenantUpdateRequest에 logo 필드 규칙 추가
- logo: null 전송 시 validated()에서 무시되던 문제 해결

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-30 22:37:00 +09:00
parent e51af61b3a
commit 7fa03caffc

View File

@@ -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',