@php require_frontend_packages(['datatables', 'bwipjs']); @endphp @extends('layout.default') @section('title', $__t('API keys')) @section('content')

@foreach($apiKeys as $apiKey) @endforeach
{{ $__t('Description') }} {{ $__t('API key') }} {{ $__t('User') }} {{ $__t('Expires') }} {{ $__t('Last used') }} {{ $__t('Created') }} {{ $__t('Key type') }}
{{ $apiKey->description }} {{ $apiKey->api_key }} {{ GetUserDisplayName(FindObjectInArrayByPropertyValue($users, 'id', $apiKey->user_id)) }} {{ $apiKey->expires }} @if(empty($apiKey->last_used)){{ $__t('never') }}@else{{ $apiKey->last_used }}@endif {{ $apiKey->row_created_timestamp }} {{ $apiKey->key_type }}
@stop