@extends('layout.app') @section('content')
@php $total_down = 0; $total_up = 0; @endphp @foreach ($list as $r) @php($total_down += round(($r->downloaded) )) @php($total_up += round(($r->uploaded) )) @endforeach
ID Username Client IP MAC Address Download Upload Login Logout Reason
{{ $r->session_id }} {{ $r->username }} {{ $r->ip_address }} {{ $r->mac_address }} {{ round(($r->downloaded) ) }} MB {{ round(($r->uploaded) ) }} MB {{ $r->session_start_time }} {{ $r->session_end_time }} {{ $r->last_disconnect_reason }}
Total {{ $total_down }} MB {{ $total_up }} MB
@endsection @section('ajax') @endsection