@extends('layouts.super-admin') @section('title', 'Devices') @section('page-title', 'Device Management') @section('page-description', 'Kelola semua device yang terdaftar') @section('content')
{{ $stats['total'] }}
Total Devices
{{ $stats['online'] }}
Online
{{ $stats['offline'] }}
Offline
{{ $stats['pending'] }}
Pending

All Devices

@foreach($devices as $device) @endforeach
ID Name Device ID Type Owner Status Last Heartbeat Actions
#{{ $device->id }} {{ $device->name }} {{ $device->device_id }} {{ ucfirst($device->type) }} {{ $device->user->name ?? 'N/A' }} {{ ucfirst($device->status) }} {{ $device->last_heartbeat ? $device->last_heartbeat->diffForHumans() : 'Never' }}
@endsection