@extends('layouts.admin') @section('title') Application API @endsection @section('content-header')

Application APIControl access credentials for managing this Panel via the API.

@endsection @section('content')

Credentials List

@foreach($keys as $key) @endforeach
Key Memo Last Used Created Created by
@if (Auth::user()->is($key->user)) {{ $key->identifier . decrypt($key->token) }} @else {{ $key->identifier . '****' }} @endif {{ $key->memo }} @if(!is_null($key->last_used_at)) @datetimeHuman($key->last_used_at) @else — @endif @datetimeHuman($key->created_at) {{ $key->user->username }}
@endsection @section('footer-scripts') @parent @endsection