@extends('layout.app')
@section('title', 'Mikrotik Bandwidth Logs')
@section('content')
| Customer | Username | IP Address | Download (Bytes) | Upload (Bytes) | Download Rate | Upload Rate | Timestamp |
|---|---|---|---|---|---|---|---|
| {{ $log->pelanggan->nama ?? '-' }} | {{ $log->username }} | {{ $log->ip_address }} | {{ number_format($log->download_bytes) }} | {{ number_format($log->upload_bytes) }} | {{ number_format($log->download_rate) }} bps | {{ number_format($log->upload_rate) }} bps | {{ $log->created_at->format('Y-m-d H:i:s') }} |
| No bandwidth logs found | |||||||