{{ __('API Keys Management') }}

Create New Key
@if (session('success')) @endif @if (session('error')) @endif @if (session('new_api_key'))

Save this API Key!

This is the only time you'll see this key. Copy it now:

{{ session('new_api_key') }}
@endif
@if($apiKeys->count() > 0)
@foreach($apiKeys as $key) @endforeach
Key Name User Masked Key Status Last Used Created Actions
{{ $key->key_name }}
@if($key->user_id) {{ $key->gatewayUser->alias ?? $key->user_id }} @else No user @endif
{{ $key->masked_key }} @if($key->is_active && !$key->is_expired) Active @elseif($key->is_expired) Expired @else Revoked @endif {{ $key->last_used_at ? $key->last_used_at->diffForHumans() : 'Never' }} {{ $key->created_at->format('Y-m-d H:i') }} View @if($key->is_active && !$key->is_expired)
@csrf
@endif
{{ $apiKeys->links() }}
@else

No API keys found

Get started by creating a new API key.

@endif
@push('scripts') @endpush