| Command | Device | Status | Sent By | Timing | Actions |
|---|---|---|---|---|---|
|
{{ $command->type }}
{{ $command->description }}
@if($command->parameters)
Parameters: {{ json_encode($command->parameters) }}
@endif
|
{{ $command->device_id }}
@if($command->device_name)
{{ $command->device_name }}
@endif
|
{{ ucfirst($command->status) }}
@if($command->response_message)
{{ $command->response_message }}
@endif
|
{{ $command->user->name ?? 'System' }}
{{ $command->user->email ?? 'system@auto' }}
|
Sent: {{ $command->created_at->format('M j, Y H:i') }}
@if($command->sent_at)
Delivered: {{ $command->sent_at->format('M j, H:i') }}
@endif
@if($command->acknowledged_at)
ACK: {{ $command->acknowledged_at->format('M j, H:i') }}
@endif
@if($command->expires_at && $command->expires_at->isFuture())
Expires: {{ $command->expires_at->diffForHumans() }}
@endif
|
|
| No commands found matching your criteria. | |||||
{{ json_encode($selectedCommand->parameters, JSON_PRETTY_PRINT) }}