@extends('layouts.admin') @section('title', 'Admin Dashboard') @section('content')
Overview sistem dan monitoring data gempa
| Time | Location | Magnitude | Depth | Status |
|---|---|---|---|---|
| {{ $gempa->waktu_kejadian->format('d/m/Y H:i') }} | {{ $gempa->lokasi }} | {{ number_format($gempa->magnitude, 1) }} | {{ $gempa->kedalaman ?? '-' }} km | {{ $gempa->status }} |
| No earthquake data | ||||
| Device | ID | Type | Status | Last Heartbeat |
|---|---|---|---|---|
| {{ $device->name }} | {{ $device->device_id }} |
{{ ucfirst($device->type) }} | {{ ucfirst($device->status) }} | {{ $device->last_heartbeat ? $device->last_heartbeat->diffForHumans() : 'Never' }} | No devices | @endforelse