Files
sam-manage/resources/views/credit/settings/edit.blade.php

13 lines
447 B
PHP
Raw Normal View History

{{-- 수정 폼에 사용할 데이터 (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>