@extends('layout.default')
@section('title')
{{ __('stat.stats') }} - {{ config('other.title') }}
@endsection
@section('breadcrumbs')
{{ __('stat.stats') }}
Clients
@endsection
@section('page', 'page__stats--clients')
@section('main')
Clients
Client |
{{ __('common.users') }} |
{{ __('torrent.peers') }} |
@if (auth()->user()->group->is_modo)
@foreach ($clients as $prefix => $group)
{{ $prefix }}
|
{{ $group['user_count'] }} |
{{ $group['peer_count'] }} |
@foreach ($group['clients'] as $client)
{{ $client['agent'] }}
|
{{ $client['user_count'] }} |
{{ $client['peer_count'] }} |
@endforeach
@endforeach
@else
@foreach ($clients as $prefix => $group)
{{ $prefix }} |
{{ $group['user_count'] }} |
{{ $group['peer_count'] }} |
@foreach ($group['clients'] as $client)
{{ $client['agent'] }} |
{{ $client['user_count'] }} |
{{ $client['peer_count'] }} |
@endforeach
@endforeach
@endif
@endsection