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

Micropub Tokens

@if($tokens->isEmpty())

No tokens have been issued.

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