Files
sam-manage/resources/views/credit/settings/edit.blade.php
pro 7ed908f53d feat:쿠콘 API 신용평가 조회 기능 구현
- CooconConfig 모델 및 마이그레이션 추가
- CooconService 클래스 구현 (OA12~OA17 API)
- CreditController 확장 (설정 관리, 조회 기능)
- 설정 관리 화면 추가 (CRUD, 활성화 토글)
- 사업자번호 조회 화면 업데이트 (API 연동)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-22 19:33:51 +09:00

13 lines
447 B
PHP

{{-- 수정 폼에 사용할 데이터 (JavaScript에서 파싱) --}}
<script type="application/json" id="config-data">
{
"id": {{ $config->id }},
"name": "{{ $config->name }}",
"environment": "{{ $config->environment }}",
"api_key": "{{ $config->api_key }}",
"base_url": "{{ $config->base_url }}",
"description": "{{ $config->description ?? '' }}",
"is_active": {{ $config->is_active ? 'true' : 'false' }}
}
</script>