refactor:용어 변경 - 가입비 → 개발비

영업 관련 코드 및 문서 전체에서 "가입비"를 "개발비"로 변경
- 컨트롤러, 서비스, 모델
- 뷰 템플릿 (blade 파일)
- 가이드북 문서 (마크다운)
- 설정 파일

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-03 16:20:09 +09:00
parent 4c5a80b456
commit 12c6175470
18 changed files with 67 additions and 67 deletions

View File

@@ -75,7 +75,7 @@ public function saveProducts(Request $request): JsonResponse
]);
}
// 총 가입비 업데이트
// 총 개발비 업데이트
$totalRegistrationFee = SalesContractProduct::where('management_id', $management->id)
->sum('registration_fee');
$management->update(['total_registration_fee' => $totalRegistrationFee]);