@extends('admin.panel.layout') @section('admin_title', 'Kunde') @section('admin_content')
Kunde

{{ $customer->name ?: $customer->email }}

{{ $customer->email }} · seit {{ optional($customer->created_at)->format('d.m.Y') }}

Kunden
@include('admin.licenses._flash')

Lizenzen

@forelse ($licenses as $lic) @empty @endforelse
KeyAppStufeStatusGeräte
{{ $lic->maskedKey() }} {{ $lic->app?->name ?? $lic->app_id }} {{ $lic->tier }} {{ $lic->status === 'active' ? 'Aktiv' : 'Gesperrt' }} {{ $lic->devices_count }}/{{ $lic->max_devices }} Details
Keine Lizenzen.
@endsection