@extends('layouts.app') @section('content')
Device information and activity history
{{ $deviceLog->device_id }}
{{ $deviceLog->ip_address }}
| Action | Time | ||
|---|---|---|---|
| @php $actionColors = [ 'login' => 'bg-green-100 text-green-700 dark:bg-green-900 dark:text-green-300', 'logout' => 'bg-gray-100 text-gray-700 dark:bg-gray-700 dark:text-gray-300', 'heartbeat' => 'bg-blue-100 text-blue-700 dark:bg-blue-900 dark:text-blue-300', 'failed' => 'bg-red-100 text-red-700 dark:bg-red-900 dark:text-red-300', 'blocked' => 'bg-red-100 text-red-700 dark:bg-red-900 dark:text-red-300', ]; @endphp {{ ucfirst($activity->action) }} | {{ $activity->created_at->format('M d, Y H:i:s') }} | ||
|
No activity history |
|||