@extends('admin.layout') @section('title', 'API Key Yönetimi') @section('page-title', 'API Key Yönetimi') @section('content')

API Key'ler

Kullanıcıların oluşturduğu anahtarlar. Düz anahtar değeri hiçbir yerde saklanmaz; yalnızca prefix görüntülenir.

@if ($keys->count() > 0)
@foreach ($keys as $key) @endforeach
Kullanıcı Key Adı Prefix Ortam Durum Son Kullanım Son {{ $recentDays }} Gün İşlemler
@if ($key->customer) {{ $key->customer->name }} {{ $key->customer->email }} @else — @endif {{ $key->name }} {{ $key->key_prefix }} {{ $key->environment }} @if ($key->status === \App\Models\ApiKey::STATUS_ACTIVE) Aktif @else Askıya alınmış @endif {{ $key->last_used_at?->format('d.m.Y H:i') ?? '—' }} {{ number_format($key->recent_requests_count, 0, ',', '.') }}
@if ($key->status === \App\Models\ApiKey::STATUS_ACTIVE)
@csrf @method('PATCH')
@else
@csrf @method('PATCH')
@endif
{{ $keys->links() }}
@else

Kayıt bulunamadı.

@endif
@endsection