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

API Keys API keys Information API keys allow external applications and integrations to securely connect to your account through the platform's APIs. Create a separate key for each application or integration, and disable or delete keys when they are no longer needed.

Create and manage secure keys for API access and external integrations.

API Keys

Manage API keys for secure access to the platform's APIs and external integrations.

@if(session('new_api_key'))

Key Generated Successfully!

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

@endif

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
API Key Status Created Actions
{{ $key->name }}
{{ \Carbon\Carbon::parse($key->created_at)->format('d M, Y') }}
@csrf @method('DELETE')
No API keys found.
@endsection