{{-- MAIN --}}
{{-- CREATE TOKEN --}}

Create API Key

@error('tokenName')
{{ $message }}
@enderror
These scopes control what this API key can access. They do not affect the user’s normal permissions.
@foreach($scopes as $group => $scopesInGroup)
{{ $group }}
@foreach($scopesInGroup as $scope)
@endforeach
@endforeach
{{-- ONE-TIME TOKEN DISPLAY --}} @if($newToken)
Copy this API key now. It will not be shown again.
@endif
{{-- EXISTING TOKENS --}}

Active API Keys

@forelse($tokens as $token) @empty @endforelse
Name Scopes Last Used
{{ $token->name }} @foreach($token->abilities as $ability) {{ $ability }} @endforeach {{ $token->last_used_at?->diffForHumans() ?? 'Never' }}
No API keys created.
{{-- SIDEBAR --}}

Security Notes


API keys allow programmatic access. Use narrow scopes and revoke keys that are no longer required.