Authentication Tokens Manage your active authentication tokens for different applications. @if($this->tokens->isEmpty())
No tokens You haven't authorized any applications yet.
@else
@foreach($this->tokens as $appName => $appTokens)
@if($appTokens->first()->application->icon) {{ $appName }} @else
@endif
{{ $appName }} {{ $appTokens->count() }} {{ $appTokens->count() === 1 ? 'token' : 'tokens' }}
@foreach($appTokens as $token)
Issued: {{ $token->issued_at->format('M j, Y \a\t g:i A') }} @if($token->expires_at) Expires: {{ $token->expires_at->format('M j, Y \a\t g:i A') }} @endif @if($token->ip) IP: {{ $token->ip }} @endif @if($token->user_agent) {{ strlen($token->user_agent) > 60 ? substr($token->user_agent, 0, 60) . '...' : $token->user_agent }} @endif
Revoke
@endforeach
@endforeach
@endif
@script @endscript