@extends('layout.default') @section('title', $__t('API keys')) @section('activeNav', '') @section('viewJsName', 'manageapikeys') @push('pageScripts') @endpush @push('pageStyles') @endpush @section('content')

@foreach($apiKeys as $apiKey) @endforeach
{{ $__t('API key') }} {{ $__t('User') }} {{ $__t('Expires') }} {{ $__t('Last used') }} {{ $__t('Created') }} {{ $__t('Key type') }}
{{ $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