@extends('app-admin.layout') @section('title','Platform Settings — Wavora Admin') @section('page-title','Platform Settings') @section('page-sub','GOWA, billing, queue & gateway configuration') @section('content')
@csrf {{-- Messages --}} @if(session('success'))
check_circle {{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $e)
error{{ $e }}
@endforeach
@endif
{{-- Platform Identity --}}
badge Platform Identity
{{-- GOWA Gateway --}}
hub WA Gateway / GOWA
Internal container URL to GOWA service
{{-- Queue & Limits --}}
queue Queue & Rate Limits
Blocks new API requests while on
{{-- Webhook --}}
webhook Webhook & Retry
{{-- Gateway Nodes Table --}}
hub Gateway Nodes {{ count($nodes) }}
@forelse($nodes as $node) @empty @endforelse
NameBase URLStatusCapabilities
{{ $node->name }} {{ $node->base_url }} {{ $node->status }} {{ implode(', ',$node->capabilities??[]) }}
hub

No nodes configured

{{-- Platform Settings Debug Table --}}
table_view Stored Settings

Data from platform_settings table

@forelse($settingRows as $row) @empty @endforelse
GroupKeyTypeValue
{{ $row->group }} {{ $row->key }} {{ $row->type }} {{ json_encode($row->value, JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE) }}
table_view

No settings stored yet

Cancel
@endsection