@extends('layouts.app') @section('title', 'My Devices') @section('content')
@forelse($devices as $device)
{{ ucfirst($device->status) }}

{{ $device->name }}

{{ $device->device_id }}

Type: {{ ucfirst($device->type) }} Last: {{ $device->last_heartbeat ? $device->last_heartbeat->diffForHumans() : 'Never' }}
View
@csrf @method('DELETE')
@empty

No devices yet

Add your first device to start collecting data

Add Device
@endforelse
@endsection