@extends('layouts.app') @section('title', 'IoT / Predictive Maintenance') @section('content') @include('maintenance::layouts.nav')

IoT Devices

@foreach($devices as $d)@endforeach
UIDNameProtocolLast Seen
{{ $d->device_uid }}{{ $d->name }}{{ $d->protocol }}{{ $d->last_seen_at }}

Open Alerts

    @foreach($alerts as $a)
  • {{ $a->message }} {{ $a->triggered_at }}
  • @endforeach

Register Device

@csrf
@endsection