- CooconConfig 모델 및 마이그레이션 추가 - CooconService 클래스 구현 (OA12~OA17 API) - CreditController 확장 (설정 관리, 조회 기능) - 설정 관리 화면 추가 (CRUD, 활성화 토글) - 사업자번호 조회 화면 업데이트 (API 연동) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
447 B
PHP
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>
|