@extends('layouts.app') @section('page-title', 'API Request Logs') @section('page-subtitle', 'Monitor all API requests') @section('content')
Total Requests
{{ number_format($stats['total']) }}
Today
{{ number_format($stats['today']) }}
Valid
{{ number_format($stats['valid']) }}
Activated
{{ number_format($stats['activated']) }}
Errors
{{ number_format($stats['errors']) }}
| Time | Endpoint | License Key | Domain | IP Address | Method | Status | Response |
|---|---|---|---|---|---|---|---|
|
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('H:i:s') }}
|
{{ strtoupper($log->endpoint) }} | {{ $log->license_key ?? '-' }} | {{ $log->domain ?? '-' }} | {{ $log->ip_address }} | {{ $log->method }} | @if($log->status == 'valid') ✓ {{ ucfirst($log->status) }} @elseif($log->status == 'activated') ✓ {{ ucfirst($log->status) }} @else ✗ {{ ucfirst(str_replace('_', ' ', $log->status)) }} @endif | {{ $log->response_code }} |
|
No API logs found |
|||||||