@extends('layout.app')
@section('title', 'Integrasi Mikrotik - Sistem Manajemen ISP')
@section('content')
| Nama: | {{ $config->nama ?? '-' }} |
| Host/IP: | {{ $config->ip_address ?? '-' }} |
| Port: | {{ $config->port ?? 8728 }} |
| Username: | {{ $config->username ?? '-' }} |
| Status: | {{ $config->is_active ? 'Aktif' : 'Nonaktif' }} |
| Keterangan: | {{ $config->keterangan }} |
Memuat informasi sistem...
| Tanggal | Username | Pelanggan | Download | Upload | Download Rate | Upload Rate | IP Address |
|---|---|---|---|---|---|---|---|
|
{{ $log->created_at->format('d/m/Y') }}
{{ $log->created_at->format('H:i') }} |
{{ $log->username }}
|
person
{{ $log->pelanggan->nama ?? '-' }}
|
{{ formatBytes($log->download_bytes) }} | {{ formatBytes($log->upload_bytes) }} | {{ formatBytes($log->download_rate) }}/s | {{ formatBytes($log->upload_rate) }}/s |
{{ $log->ip_address }}
|
|
archive
Belum ada data bandwidthLog bandwidth akan muncul setelah data tersinkronisasi |
|||||||
| Username | Profile | Service | Status | Comment | Actions |
|---|---|---|---|---|---|
{{ $user['name'] ?? '-' }} |
{{ $user['profile'] ?? '-' }} | {{ $user['service'] ?? '-' }} | @php // Di MikroTik: jika disabled tidak ada atau kosong = enabled, jika disabled = 'yes' = disabled $isDisabled = isset($user['disabled']) && $user['disabled'] === 'yes'; @endphp {{ !$isDisabled ? 'Active' : 'Disabled' }} | {{ $user['comment'] ?? '-' }} | |
|
person
Belum ada PPPoE users |
|||||
| Username | Profile | Status | Comment | Actions |
|---|---|---|---|---|
{{ $user['name'] ?? '-' }} |
{{ $user['profile'] ?? '-' }} | @php $isDisabled = isset($user['disabled']) && $user['disabled'] === 'yes'; @endphp {{ !$isDisabled ? 'Active' : 'Disabled' }} | {{ $user['comment'] ?? '-' }} | |
|
wifi
Belum ada Hotspot users |
||||
| Name | Target | Limit At | Max Limit | Status | Comment | Actions |
|---|---|---|---|---|---|---|
{{ $queue['name'] ?? '-' }} |
{{ $queue['target'] ?? '-' }} | {{ $queue['limit-at'] ?? '-' }} | {{ $queue['max-limit'] ?? '-' }} | @php // Di MikroTik: jika disabled tidak ada atau kosong = enabled, jika disabled = 'yes' = disabled $isQueueDisabled = isset($queue['disabled']) && $queue['disabled'] === 'yes'; @endphp {{ !$isQueueDisabled ? 'Active' : 'Disabled' }} | {{ $queue['comment'] ?? '-' }} | |
|
settings
Belum ada Queue rules |
||||||