@if (empty($stats->packets_in) && empty($stats->packets_out) && empty($stats->bytes_in) && empty($stats->bytes_out) && empty($stats->bandwidth->max_packets_in) && empty($stats->bandwidth->max_packets_out) && empty($stats->bandwidth->max_bytes_in) && empty($stats->bandwidth->max_bytes_out))
@else
{{ __('Current/s') }} {{ __('Peak/s') }} {{ __('Total') }}
{{ __('Bytes[In]') }} {{ $stats->bytes_in }} {{ $stats->bandwidth->max_bytes_in }} {{ $stats->bytes_in + $stats->bytes_in }}
{{ __('Bytes[Out]') }} {{ $stats->bytes_out }} {{ $stats->bandwidth->max_bytes_out }} {{ $stats->bytes_out + $stats->bytes_out }}
{{ __('Packets[In]') }} {{ $stats->packets_in }} {{ $stats->bandwidth->max_packets_in }} {{ $stats->packets_in + $stats->packets_in }}
{{ __('Packets[Out]') }} {{ $stats->packets_out }} {{ $stats->bandwidth->max_packets_out }} {{ $stats->packets_out + $stats->packets_out }}
@endif