@extends('layouts.app') @section('title', 'API Key Management') @section('content')
@if(session('new_api_key'))

Key Generated Successfully!

Please copy this key now. For security reasons, you cannot see it again.

@endif

API Keys

Manage multiple API keys for different environments and applications.

Generate API Key

Assign a name and environment to your new API key. Keys are used to authenticate your requests safely.

@csrf
@forelse($api_keys as $key) @empty @endforelse
Name / Prefix Environment Status Created Actions
{{ $key->name }}
{{ $key->key_prefix }}********************
{{ $key->environment }} {{ \Carbon\Carbon::parse($key->created_at)->format('d M, Y') }}
@csrf @method('DELETE')
No API keys found.
@endsection