@extends('layouts.app') @section('title', 'Hotspot Active Users') @section('content')
User yang sedang terhubung ke hotspot Mikrotik
| User | IP Address | MAC Address | Login Time | Uptime | Bytes In/Out | Server | Status | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ $user['user'] }}
@if($user['comment'])
{{ $user['comment'] }}
@endif
|
{{ $user['address'] }}
|
{{ $user['mac_address'] }}
|
{{ $user['login_time'] }} | {{ $user['uptime'] }} |
@php
$bytesIn = is_numeric($user['bytes_in']) ? $user['bytes_in'] : 0;
$mbIn = $bytesIn / 1024 / 1024;
@endphp
{{ number_format($mbIn, 2) }} MB
@php
$bytesOut = is_numeric($user['bytes_out']) ? $user['bytes_out'] : 0;
$mbOut = $bytesOut / 1024 / 1024;
@endphp
{{ number_format($mbOut, 2) }} MB
|
{{ $user['server'] }} | @if($user['radius'] === 'true') RADIUS @else Local @endif |
|
Belum ada user yang terhubung ke hotspot saat ini
Silakan pilih router Mikrotik untuk melihat user hotspot aktif