@extends('layout.app') @section('title', 'Mikrotik Users') @section('content')
Daftar Mikrotik Users
@if(isset($error))
error{{ $error }}
@else
routerPPPoE Users
@forelse($pppoeUsers ?? [] as $user) @empty @endforelse
Name Password Profile Service Disabled Comment
{{ $user['name'] ?? '-' }} {{ $user['password'] ?? '-' }} {{ $user['profile'] ?? '-' }} {{ $user['service'] ?? '-' }} {{ ($user['disabled'] ?? 'yes') === 'no' ? 'Active' : 'Disabled' }} {{ $user['comment'] ?? '-' }}
No PPPoE users found
wifiHotspot Users
@forelse($hotspotUsers ?? [] as $user) @empty @endforelse
Name Password Profile Disabled Comment
{{ $user['name'] ?? '-' }} {{ $user['password'] ?? '-' }} {{ $user['profile'] ?? '-' }} {{ ($user['disabled'] ?? 'yes') === 'no' ? 'Active' : 'Disabled' }} {{ $user['comment'] ?? '-' }}
No Hotspot users found
@endif
@endsection