@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.

@csrf
@foreach($api_keys as $key) @endforeach
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')
@endsection