@extends('layouts.app') @section('title', 'API Tokens') @section('breadcrumb') @endsection @section('content')

API Tokens

Create New Token
@if(session('success')) @endif @if(session('new_token')) @endif
@forelse($tokens as $token) @empty @endforelse
Name Client Status Last Used Created Actions
{{ $token->name }} {{ $token->client->name }} @if($token->is_revoked) Revoked @else Active @endif {{ $token->last_used_at ? $token->last_used_at->diffForHumans() : 'Never' }} {{ $token->created_at->format('Y-m-d H:i') }}
@if(!$token->is_revoked)
@csrf
@endif

No API tokens found

{{ $tokens->links() }}
@push('scripts') @endpush @endsection