@extends('layouts.app') @section('title', 'Dashboard Admin') @section('content')

Administrator Dashboard

Monitorizare globală a sistemului AdGuard

{{ $status['protection_enabled'] ?? false ? 'Protecție Activă' : 'Protecție Oprită' }}

Total Interogări

{{ number_format($stats['num_dns_queries'] ?? 0) }}

În ultimele 24 de ore

Interogări Blocate

{{ number_format($stats['num_blocked_filtering'] ?? 0) }}

Protectie activă

Clienți Activi

{{ count($uniqueIps) }}

IP-uri unice

Utilizatori DB

{{ $users->count() }}

Manage

Trafic Global (DNS Queries)

Status Distribuție

Raport Blokate vs Permise vs SafeSearch
Rețea (IP-uri Detectate)
@if(empty($ipClasses))

Nu s-au găsit IP-uri în AdGuard.

@else
@foreach($ipClasses as $ipClass)
{{ $ipClass }} @if(isset($clientNames[$ipClass]))
{{ $clientNames[$ipClass] }}
@endif
@if(in_array($ipClass, $assignedIps)) Asociat @else Neasociat @endif
@endforeach
@endif
Utilizatori Recenți
Vezi toți
@if($users->isEmpty())

Nu există utilizatori creați.

@else
@foreach($users->take(5) as $user)
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
{{ $user->email }}
@forelse($user->clientIps as $ip) {{ $ip->ip_pattern }} @empty Fără IP @endforelse
@endforeach
@endif
@push('scripts') @endpush @endsection