@extends('layouts.app') @section('title', 'Dashboard') @section('content')

Dashboard

Welcome to API Management System

Client Guide API Documentation

API Management

Public Access Mode

{{ $stats['total_apis'] }}

APIs

{{ $stats['total_requests'] }}

Requests

{{ $stats['system_status'] }}

Status

API Sources
{{ $stats['api_sources'] }}
{{ $stats['active_sources'] }} Active
API Targets
{{ $stats['api_targets'] }}
{{ $stats['active_targets'] }} Active
API Receivers
{{ $stats['api_receivers'] }}
{{ $stats['active_receivers'] }} Active
API Transceivers
{{ $stats['total_transceivers'] }}
{{ $stats['active_transceivers'] }} Active
Success Rate
{{ $stats['success_rate'] }}%
Error Rate
{{ $stats['error_rate'] }}%
Today's Requests
{{ $stats['today_requests'] }}
API Clients
{{ $stats['total_clients'] }}
Recent API Sources
View All
@if($api_sources->count() > 0)
@foreach($api_sources as $source)
{{ $source->name }}
{{ $source->created_at->format('M d, Y') }}
{{ ucfirst($source->status) }}
@endforeach
@else

No API sources found.

@endif
Recent API Targets
View All
@if($api_targets->count() > 0)
@foreach($api_targets as $target)
{{ $target->name }}
{{ $target->created_at->format('M d, Y') }}
{{ $target->is_active ? 'Active' : 'Inactive' }}
@endforeach
@else

No API targets found.

@endif
Recent API Receivers
View All
@if($api_receivers->count() > 0)
@foreach($api_receivers as $receiver)
{{ $receiver->name }}
{{ $receiver->created_at->format('M d, Y') }}
{{ $receiver->is_active ? 'Active' : 'Inactive' }}
@endforeach
@else

No API receivers found.

@endif
@endsection