| {{ t('token_name_label') }} | {{ t('scopes_label') }} | {{ t('status_label') }} | {{ t('last_used_label') }} | {{ t('expires_label') }} | {{ t('actions_label') }} |
|---|---|---|---|---|---|
|
{{ $token->name }}
{{ t('token_ends_with') }} ...{{ substr($token->token, -8) }}
|
@foreach (array_slice($token->scopes ?? [], 0, 3) as $scope)
{{ $scope }}
@endforeach
@if (count($token->scopes ?? []) > 3)
+{{ count($token->scopes) - 3 }} {{ t('more_scopes') }}
@endif
|
@if ($token->is_active && !$token->isExpired()) {{ t('active_status') }} @elseif ($token->isExpired()) {{ t('expired_status') }} @else {{ t('inactive_status') }} @endif | {{ $token->last_used_at ? $token->last_used_at->diffForHumans() : t('never') }} | {{ $token->expires_at ? $token->expires_at->format('M d, Y') : t('never') }} |
@if (checkPermission('system_settings.edit'))
@if ($token->is_active)
@endif
@endif
|
{{ t('get_started_message') }}
@if (checkPermission('system_settings.edit'))
GET {{ config('app.url') }}/api/v2/contacts
Authorization: Bearer YOUR_TOKEN_HERE
{{ t('token_security_warning') }}
{{ t('old_token_revoked_message') }}