@extends('layouts.app')
@section('title', 'Devices')
@section('content')
Enter in the Android app for {{ $cred['device_name'] }}
Enter the device name and registration code in the Android or iOS app.
| Device | ID | User | Status | Last Sync | Battery | SIM | Network | Code | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $device->device_name }} | {{ $device->device_uid }} | {{ $device->user?->name ?? 'Unassigned' }} | @if ($device->isPending()) Pending setup @else {{ $device->isOnline() ? 'Online' : 'Offline' }} @endif | {{ $device->last_seen?->diffForHumans() ?? 'Never' }} |
@if ($device->battery_level !== null)
|
{{ $device->sim_slot ?? '—' }} | {{ $device->network_type ?? '—' }} | @if ($device->isPending()) @php $activeCode = $device->activeRegistrationCode(); @endphp @if ($activeCode) {{ $activeCode->code }} @else Expired @endif @else — @endif |
@if (auth()->user()->canManageUsers())
|
|
|
|||||||||