@extends('adminlte::page') @section('title', 'Registration Keys') @section('content_header')

Registration Keys

Generate Key
@endsection @section('content') @push('css') @endpush @if (session('status'))
{{ session('status') }}
@endif
@forelse ($keys as $key) @empty @endforelse
ID Serial Key Device ID Activated At Expires At Deactivated At Active Locked Created
{{ $key->id }} {{ $key->serial_key }} {{ $key->device_id ?? '-' }} {{ optional($key->activated_at)->format('Y-m-d H:i') ?? '-' }} {{ optional($key->expires_at)->format('Y-m-d H:i') ?? '-' }} {{ optional($key->deactivated_at)->format('Y-m-d H:i') ?? '-' }} @if($key->is_active) Yes @else No @endif @if($key->is_locked) Yes @else No @endif {{ optional($key->created_at)->format('Y-m-d H:i') }}
No keys found.
@if ($keys instanceof \Illuminate\Contracts\Pagination\Paginator || $keys instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator) @endif
@endsection