@extends('backendTools.layouts.backend') @section('title', 'Socket Connection Check') @section('header', 'Socket Connection Check') @push('styles') @endpush @section('content') @php $activeTab = session('tab', $platforms[0] ?? ''); @endphp @php $defaultCurrency = env('DEFAULT_CURRENCY'); @endphp
目前預設幣別: @if(!empty($defaultCurrency)) {{ $defaultCurrency }} (請確認幣別是否正確,如果有錯誤請在env修改DEFAULT_CURRENCY) @else 目前未設置幣別,請在env設置DEFAULT_CURRENCY @endif
@foreach($platforms as $platform)
@csrf {{-- ✅ 回調資訊 --}}
  • {{ config('apiUrl.gameIntegration.nocf_url_new') }}/api/{{$defaultCurrency}}/{{ env('DB_DATABASE') }}/{{ strtoupper($platform) }}
  • {{ config('apiUrl.gameIntegration.nocf_url') }}/Singlemultiple/{{$defaultCurrency}}/{{ env('DB_DATABASE') }}/{{ strtoupper($platform) }}system
  • {{-- ✅ API 加白資訊 --}}
    @if (!empty($apiWhitelist[$platform]))
      @foreach ($apiWhitelist[$platform]['ip'] as $entry)
    • IP: {{ $entry ?? '-' }}
    • @endforeach
    @else
    目前沒有加白的 IP。
    @endif
    @endforeach
    @endsection @push('scripts') @endpush