@extends('adminlte::page') @section('title', 'Registration Keys') @section('content_header')
| 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. | ||||||||