@extends('layouts.adminlte-layout') @section('title', 'Dashboard') @section('content-header')
Total Traffic
| Name | Status | |
|---|---|---|
| {{ $client->name }} | {{ $client->email ?? 'No email' }} | {{ ucfirst($client->status) }} |
No clients yet
| Client | IP Address | Traffic | Time |
|---|---|---|---|
| @if($connection->vpn_client_id && $connection->client) {{ $connection->client->name }} @else Unknown Client @endif |
{{ $connection->real_address ?? 'N/A' }} {{ $connection->virtual_address ?? 'N/A' }} |
{{ number_format(($connection->bytes_sent ?? 0) / 1024) }} KB {{ number_format(($connection->bytes_received ?? 0) / 1024) }} KB |
{{ $connection->connected_at->diffForHumans(null, true) }} |
No active connections