@extends('layouts.admin') @section('content')
Token Type: {{ $currentToken->token_type }}
Access Token:
{{ substr($currentToken->access_token, 0, 50) }}...
Has Refresh Token: Yes
@endifCreated: {{ $currentToken->created_at->format('M d, Y h:i A') }}
Expires: {{ $currentToken->expires_at->format('M d, Y h:i A') }} ({{ $currentToken->expires_at->diffForHumans() }})
@if($currentToken->last_used_at)Last Used: {{ $currentToken->last_used_at->diffForHumans() }}
@endifStatus: {{ $currentToken->isValid() ? 'Valid' : 'Expired' }}
| ID | Token Type | Access Token | Created | Expires | Last Used | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $token->id }} | {{ $token->token_type }} |
{{ substr($token->access_token, 0, 30) }}...
|
{{ $token->created_at->format('M d, Y h:i A') }} | {{ $token->expires_at->format('M d, Y h:i A') }} | @if($token->last_used_at) {{ $token->last_used_at->diffForHumans() }} @else Never @endif | @if($token->is_active) @if($token->isExpired()) Active (Expired) @else Active @endif @else Inactive @endif | @if($token->is_active) @else - @endif |
Base URL:
{{ config('membership_api.base_url') }}
Timeout:
{{ config('membership_api.timeout') }} seconds
Username:
{{ config('membership_api.username') ? '***' : 'Not set' }}
API Key:
{{ config('membership_api.key') ? '***' : 'Not set' }}