@extends('layouts.admin') @section('title', $customer->name) @section('subtitle', $customer->email) @section('content')
البريد
{{ $customer->email }}
الهاتف
{{ $customer->phone ?: '—' }}
عدد التراخيص
{{ $customer->licenses->count() }}

تراخيص العميل

@forelse($customer->licenses as $license) @empty@endforelse
المفتاحالقالبالحالةالمواقعالانتهاء
{{ $license->key_encrypted }}{{ $license->theme->name }}{{ $license->effectiveStatus() }}{{ $license->activations->whereNull('deactivated_at')->count() }} / {{ $license->max_sites }}{{ $license->expires_at?->format('Y-m-d') ?? 'دائم' }}
لا توجد تراخيص.
@endsection