Log #{{ $activityLog->id }} Historial #{{ $activityLog->id }}
@if($activityLog->success) @else @endif

{{ $activityLog->action }}

{{ $activityLog->created_at->format('d/m/Y h:i:s A') }}

{{-- Info --}}

Detalles

Resultado
@if($activityLog->success) Exitoso @else Error @endif
Usuario
{{ $activityLog->user?->name ?? 'Sistema' }}
Dispositivo
{{ $activityLog->device?->name ?? '—' }}
Objetivo
{{ $activityLog->target ?? '—' }}
IP
{{ $activityLog->ip_address ?? '—' }}
{{-- Commands & Output --}}
@if($activityLog->commands)

Comandos Enviados

Comandos CLI
{{ $activityLog->commands }}
@endif @if($activityLog->output)

Respuesta de la OLT

Output SSH
{{ $activityLog->output }}
@endif