@extends('layouts.admin') @section('title') Aplicação de API @endsection @section('content-header')

Aplicação APIControlar credenciais de acesso para gerenciar este Painel através da API.

@endsection @section('content')

Lista de Credenciais

@foreach($keys as $key) @endforeach
Chave Descrição Último Uso Criado
{{ $key->identifier }}{{ decrypt($key->token) }} {{ $key->memo }} @if(!is_null($key->last_used_at)) @datetimeHuman($key->last_used_at) @else — @endif @datetimeHuman($key->created_at)
@endsection @section('footer-scripts') @parent @endsection