@extends('layouts.app') @section('title', '쿠콘 API 설정') @section('content')

쿠콘 API 설정

신용평가 API 연동을 위한 쿠콘 설정을 관리합니다

@if($configs->isEmpty())

등록된 설정이 없습니다

새 설정을 추가하여 쿠콘 API를 연동하세요

@else
@foreach($configs as $config) @endforeach
설정명 환경 API Key 상태 등록일 관리
{{ $config->name }}
@if($config->description)
{{ Str::limit($config->description, 50) }}
@endif
{{ $config->environment_label }} {{ $config->masked_api_key }} {{ $config->status_label }} {{ $config->created_at->format('Y-m-d H:i') }}
@endif
@endsection @push('scripts') @endpush