@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('API Key Management')) @section('content_header')
Friendly reminder: API keys can access your whole account and the resources it has access to. Please treat them like a password. If they are leaked, please revoke them.
This is your API key: {{ session('finalKey') }}
Please copy it now as it'll only appear once.
Key name | Status | Last Used | Last Modified | Actions |
---|---|---|---|---|
{{ $key->name }} | {{ ($key->status == 'disabled') ? 'Revoked' : 'Active' }} | {{ ($key->last_used == null) ? 'No recent activity' : $key->last_used }} | {{ $key->updated_at }} | @if ($key->status == 'active') @endif |
You don't have any API keys yet.