@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('Expires') }} {{ $L('Last used') }} {{ $L('Created') }}
{{ $apiKey->api_key }} {{ $apiKey->expires }} @if(empty($apiKey->last_used)){{ $L('never') }}@else{{ $apiKey->last_used }}@endif {{ $apiKey->row_created_timestamp }}
@stop