@extends('layouts.app') @section('title','Hotspot History — BlueBando v3') @section('content')

Hotspot Session History

Last 200 snapshots (each snapshot is taken when you open the Active page).
@if($logs->count())
@foreach($logs as $l) @endforeach
Seen At Router User Address MAC Bytes In Bytes Out Login By
{{ $l->seen_at }} {{ $l->router_id }} {{ $l->user }} {{ $l->address }} {{ $l->mac }} {{ bb_format_bytes($l->bytes_in) }} {{ bb_format_bytes($l->bytes_out) }} {{ $l->login_by }}
@else
No history yet. Open the Active page a few times to start logging.
@endif
@endsection