@extends('layouts.admin')
@section('title')
    Application API
@endsection
@section('content-header')
    
Application APIControl access credentials for managing this Panel via the API.
    
        - Admin
- Application API
@endsection
@section('content')
        
            
                
                
                    
                        
                            | Key | Memo | Last Used | Created |  | 
                        @foreach($keys as $key)
                            
                                | {{ $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) |  | 
                        @endforeach
                    
                 
             
         
     
@endsection
@section('footer-scripts')
    @parent
    
@endsection