=== ROUTE INFORMATION ===
Current URL: {{ url()->current() }}
Base URL: {{ config('app.url') }}
CSRF Token: {{ csrf_token() }}
Session ID: {{ session()->getId() }}
=== API CLIENTS ===
Total Clients: {{ \App\Models\ApiClient::count() }}
@foreach(\App\Models\ApiClient::all() as $client)
- ID: {{ $client->id }}, Name: {{ $client->name }}, Client ID: {{ $client->client_id }}
@endforeach
=== API TOKENS ===
Total Tokens: {{ \App\Models\ApiToken::count() }}
@foreach(\App\Models\ApiToken::latest()->take(3)->get() as $token)
- ID: {{ $token->id }}, Name: {{ $token->name }}, Status: {{ $token->is_revoked ? 'Revoked' : 'Active' }}
@endforeach
=== ENVIRONMENT ===
Laravel Version: {{ app()->version() }}
PHP Version: {{ phpversion() }}
Environment: {{ config('app.env') }}
Debug Mode: {{ config('app.debug') ? 'ON' : 'OFF' }}