@extends('layouts.app') @section('title') Events @endsection @section('description') Last 100 events is here. @endsection @section('breadcrumb')
  • All Events
  • @endsection @section('content')
    @forelse ($events as $index => $event) @empty @endforelse
    # Device ID ICCID User Temp (C) CPU (%) Memory(%) Packets Tx Packets Rx Data Cache Created At Detail
    {{ $index+1 }} @if($event->node()->exists()) {{ $event->device_id }} @else Unkown device @endif {{ $event->iccid ?? '-' }} {{ $event->user ?? '-' }} {{ $event->temperature }}° C {{ $event->cpu_percent }} % {{ $event->memory_percent }} % {{ $event->packets_sent }} {{ $event->packets_recv }} {{ $event->total_data_cache }} {{ $event->created_at->diffForHumans() }} View detail
    No data.
    @endsection