Detalii Utilizator: {{ $user->name }}

Dashboard / Admin / Utilizatori / {{ $user->name }}

@if(!$user->isAdmin())
@csrf
@endif Editează Înapoi

Informații Utilizator

{{ $user->name }}

{{ $user->email }}

@if($user->role === 'admin') Administrator @else Utilizator @endif

@if($user->is_active) Activ @else Inactiv @endif

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

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

@if($user->role === 'admin') Informații Admin @elseif($user->role === 'reseller') Pachet Reseller @else Pachet Abonament @endif

@if($user->role === 'admin')

Administrator

Acces complet, fără limite

@elseif($user->role === 'reseller') @if($user->resellerPlan)

{{ $user->resellerPlan->name }}

@if($user->resellerPlan->price > 0) {{ number_format($user->resellerPlan->price, 2) }} RON/lună @else GRATUIT @endif

{{ $user->clients->count() }} / {{ $user->resellerPlan->max_clients }}

{{ $user->resellerPlan->dns_zones_per_client }} zone DNS
{{ $user->resellerPlan->subdomains_per_client }} subdomenii
{{ $user->resellerPlan->nameservers_per_client }} NS

@else

Reseller fără pachet asignat

@endif @else @if($user->plan)

{{ $user->plan->name }}

@if($user->plan->price > 0) {{ number_format($user->plan->price, 2) }} RON/lună @else GRATUIT @endif

{{ $user->dnsZones->count() }} / {{ $user->plan->dns_zones_limit }}

Max {{ $user->plan->nameservers_limit }}

@else

Utilizator fără pachet asignat

@endif @endif

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

@if($user->dnsZones->count() > 0)
@foreach($user->dnsZones as $zone) @endforeach
Domeniu Tip Înregistrări Creat La
{{ $zone->domain }} {{ $zone->type }} {{ $zone->records->count() }} {{ $zone->created_at->format('d.m.Y') }}
@else


Nicio zonă DNS creată încă

@endif

Istoric Activități (Ultimele 50)

@if($activities->count() > 0)
@foreach($activities as $activity)
@if($activity->action == 'create')
@elseif($activity->action == 'update')
@elseif($activity->action == 'delete')
@else
@endif

{{ $activity->description }}

{{ $activity->created_at->format('d.m.Y H:i') }} {{ $activity->ip_address }}
@endforeach
@else


Nicio activitate înregistrată

@endif