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

@yield('title')  {{ $L('Add') }}

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