@extends('master') @section('title')List Tokens « Admin CP « @stop @section('content')

Micropub Tokens

Generate new token

@if(session('new_token'))

Here's your new token. Copy it now — it won't be shown again.

@endif @if($tokens->isEmpty())

No tokens have been issued.

@else
@foreach($tokens as $token) @endforeach
Client Scope Issued Status Action
{{ $token->client_id }} @foreach(explode(' ', $token->scope) as $scope) {{ $scope }} @endforeach @if($token->isRevoked) Revoked {{ $token->revoked_at->diffForHumans() }} @else Active @endif @unless($token->isRevoked)
{{ csrf_field() }} {{ method_field('PUT') }}
@endunless
@endif @stop