Detalii Client: {{ $client->name }}

Dashboard / Reseller / Clienți / {{ $client->name }}

Zone DNS

{{ $stats['total_dns_zones'] }} / {{ $client->plan->dns_zones_limit ?? 0 }}

Zone Active

{{ $stats['active_dns_zones'] }}

Status

{{ $client->is_active ? 'Activ' : 'Inactiv' }}

Informații Personale

{{ $client->name }}

{{ $client->email }}

{{ ucfirst($client->role) }}

{{ $client->is_active ? 'Activ' : 'Inactiv' }}

{{ $client->created_at->format('d.m.Y H:i') }}

{{ $client->updated_at->format('d.m.Y H:i') }}

Plan Abonament

@if($client->plan)

Nume Plan

{{ $client->plan->name }}

Limite

{{ $client->plan->dns_zones_limit }} zone DNS
{{ $client->plan->subdomains_limit }} înregistrări
{{ $client->plan->nameservers_limit }} nameservere
@else

Nu are plan alocat.

@endif

Zone DNS ({{ $client->dnsZones->count() }})

@if($client->dnsZones->count() > 0)
@foreach($client->dnsZones as $zone)

{{ $zone->domain }}

{{ $zone->records()->count() }} înregistrări • {{ $zone->created_at->format('d.m.Y') }}

{{ $zone->is_active ? 'Activ' : 'Inactiv' }}
@endforeach
@else

Nicio zonă DNS

@endif