@extends('layout.default')
@section('title', $__t('API keys'))
@section('activeNav', '')
@section('viewJsName', 'manageapikeys')
@push('pageScripts')
@endpush
@push('pageStyles')
@endpush
@section('content')
|
{{ $__t('API key') }} |
{{ $__t('User') }} |
{{ $__t('Expires') }} |
{{ $__t('Last used') }} |
{{ $__t('Created') }} |
{{ $__t('Key type') }} |
@foreach($apiKeys as $apiKey)
|
{{ $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 }}
|
@endforeach
@stop