@extends('layouts.admin-sidebar') @section('title', $apiConfig->name . ' Configuration') @section('page-title', $apiConfig->name . ' Configuration') @section('page-description', 'Configure ' . $apiConfig->name . ' API settings and credentials') @section('content')

{{ $apiConfig->name }}

{{ $apiConfig->description }}

@if($apiConfig->is_active) Active @else Inactive @endif @if($apiConfig->is_live_mode) Live Mode @else Test Mode @endif
@csrf @method('PUT')

Basic Information

@error('name')

{{ $message }}

@enderror

API Endpoints

@error('base_url')

{{ $message }}

@enderror

Authentication Credentials

Leave empty to keep current value

Callback URLs

Configuration Settings

Cancel

Generated URLs

Status Information

Status {{ $apiConfig->health_status_text }}
@if($apiConfig->last_tested_at)
Last Tested {{ $apiConfig->last_tested_at->diffForHumans() }}
@endif
Configuration {{ $apiConfig->isConfigured() ? 'Configured' : 'Not Configured' }}
Updated {{ $apiConfig->updated_at->diffForHumans() }}

Quick Actions

@csrf
@csrf
@endsection