OAuth Clients

@if($authorizationError)

Whoops! Something went wrong!


{{ $authorizationError }}
@endif Create New Client
@if($clients->count() === 0)

You have not created any OAuth clients.

@endif @if($clients->count() > 0) @foreach($clients as $client) @endforeach
Client ID Name Secret Edit Delete
{{ $client->id }} {{ $client->name }} {{ $client->secret }} Edit
@endif
@if ($authorized_tokens->count() > 0)

Authorized Applications

@foreach($authorized_tokens as $token) @endforeach
Name Scopes Delete
{{ $token->client->name }} @if(!$token->scopes) No Scopes @endif
@endif