['required', 'string', 'max:100'], 'file' => [ 'required', 'file', 'mimes:jpg,jpeg,png,gif,bmp,svg,webp,pdf,doc,docx,xls,xlsx,hwp,dwg,dxf,zip,rar', 'max:20480', // 20MB ], 'file_id' => ['sometimes', 'nullable', 'integer'], 'item_type' => ['sometimes', 'nullable', 'string', 'in:FG,PT,SM,RM,CS,fg,pt,sm,rm,cs'], ]; } public function attributes(): array { return [ 'field_key' => '필드 키', 'file' => '파일', 'file_id' => '파일 ID', 'item_type' => '품목 유형', ]; } public function messages(): array { return [ 'field_key.required' => '필드 키는 필수입니다.', 'file.required' => '파일을 선택해주세요.', 'file.mimes' => '허용되지 않는 파일 형식입니다.', 'file.max' => '파일 크기는 20MB를 초과할 수 없습니다.', ]; } }