@extends('layouts.app') @section('title', 'Device Details - ' . $device->name) @section('content')
{{ ucfirst($device->status) }}
{{ ucfirst($device->type) }}
Last Heartbeat: {{ $device->last_heartbeat ? $device->last_heartbeat->diffForHumans() : 'Never' }}
API Key: {{ substr($device->api_key, 0, 20) }}...
Created: {{ $device->created_at->format('d M Y H:i') }}

Connection Guide

Use this API Key to connect your device:

{{ $device->api_key }}

Quick Setup:

  1. Copy the API Key above
  2. Configure your device with:
  3. API_KEY = "{{ $device->api_key }}"
    SERVER_URL = "{{ url('/api/gateway/data') }}"
  4. Your device will appear online automatically

Recent Data

Time Type Value Details
Loading data...

Send Command to Device

@endsection