@extends('customer.layouts.mobile') @section('title', 'Status Koneksi') @section('page-title', 'Koneksi Internet') @php $showBackButton = true; @endphp @section('content')
@if($connectionStatus['is_online'])
@endif

{{ $connectionStatus['is_online'] ? 'Terhubung' : 'Terputus' }}

{{ $connectionStatus['is_online'] ? 'Koneksi internet stabil' : 'Tidak ada koneksi internet' }}

@if($connectionStatus['is_online'])

Uptime: {{ $connectionStatus['uptime'] ?? '99.9%' }} • Last check: {{ now()->format('H:i') }}

@else

Koneksi terputus • Hubungi support untuk bantuan

@endif
@if($connectionStatus['is_online'])
Test Kecepatan

Download

{{ $connectionStatus['download_speed'] ?? '0' }}

Mbps

Upload

{{ $connectionStatus['upload_speed'] ?? '0' }}

Mbps

Ping

0

ms

Kualitas Koneksi Excellent
Statistik Penggunaan

Bulan Ini

{{ rand(150, 500) }} GB

Minggu Ini

{{ rand(30, 120) }} GB

Hari Ini

{{ $connectionStatus['data_usage']['total'] ?? rand(5, 25) . ' GB' }}

Rata-rata harian {{ rand(8, 20) }} GB/hari
@endif
Informasi Koneksi
Nomor Layanan {{ $pelanggan->nomer_layanan ?? 'Belum Ada' }}
Status Akun {{ ucfirst($pelanggan->status ?? 'Tidak Aktif') }}
Paket Internet {{ $pelanggan->layananData->nama_layanan ?? 'Standard 20 Mbps' }}
IP Address {{ $connectionStatus['ip_address'] ?? 'N/A' }}
Terdaftar Sejak {{ \Carbon\Carbon::parse($pelanggan->created_at)->format('d M Y') }}
@endsection @push('css') @endpush @push('scripts') @endpush