@foreach ($list as $r)
@if (checkSettings('show-traffice') == 'enable' && $r->client_approval != 'pending') Show Speed @endif
@if (checkSettings('show-traffice') == 'enable' && $r->client_approval != 'pending')
Session Details
Last Link Up Time
{{ $bandwidthUsage ? parseDate($bandwidthUsage['last-link-up-time']) : '-1' }}
Last Logout Time
{{ $lastLogoutTime ? parseDate($lastLogoutTime) : '-1' }}
Client Mac Address
{{ isset($activeClientInfo) && $activeClientInfo ? $activeClientInfo['caller-id'] : '-1' }}
Vendor Name
{{ $vendorName ?? '-1' }}
Download
{{ number_format(($bandwidthUsage ? $bandwidthUsage['tx-byte'] : 0) / 1073741824, 2, '.', '') }} GB
Upload
{{ number_format(($bandwidthUsage ? $bandwidthUsage['rx-byte'] : 0) / 1073741824, 2, '.', '') }} GB
{{--
--}}
@endif
@endforeach