@extends('layouts.admin') @section('title', 'Devices') @section('page-title', 'Devices') @section('content')
@forelse($devices as $device) @empty @endforelse
User Device Platform App Version Storage Last Sync Action
{{ $device->user->name ?? 'Unknown user' }}
{{ $device->user->email ?? 'No email' }}
{{ $device->model ?: 'Unknown model' }}
{{ $device->device_id }}
{{ strtoupper($device->platform ?: 'N/A') }} {{ $device->app_version ?: 'N/A' }} {{ number_format(($device->storage_used_bytes ?? 0) / 1048576, 2) }} MB {{ $device->last_sync_at?->diffForHumans() ?? 'Never' }}
@if($device->is_revoked) Revoked @else
@csrf
@endif
No devices found.
{{ $devices->links() }}
@endsection