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>
|