@extends('layouts.app') @section('content')

Dashboard COLVADRES

Resumen operativo documental y trazabilidad reciente.
Nuevo registro Nueva carga Nueva exportación

Registros

{{ number_format($recordsCount) }}

Archivos

{{ number_format($filesCount) }}

Importaciones

{{ number_format($importsCount) }}

Exportaciones

{{ number_format($exportsCount) }}

Registros sin archivo

{{ number_format($withoutFilesCount) }}

Movimientos hoy

{{ number_format($auditTodayCount) }}

Módulos con trazabilidad

{{ number_format($auditByModule->count()) }}

Estados de digitalización

@forelse($byDigitalization as $row) @empty @endforelse
EstadoTotal
{{ $row->label }}{{ number_format($row->total) }}
Sin datos.

Top bodegas

@forelse($topBodegas as $row) @empty @endforelse
BodegaTotal
{{ $row->label }}{{ number_format($row->total) }}
Sin datos.

Actividad reciente

Ver auditoría
@forelse($recentAudit as $log) @empty @endforelse
FechaUsuarioMóduloAcciónEntidad
{{ optional($log->created_at)->format('Y-m-d H:i') }} {{ optional($log->user)->name ?? 'Sistema' }} {{ $log->modulo }} {{ $log->accion }} {{ $log->entidad }} #{{ $log->entidad_id }}
Sin movimientos recientes.

Auditoría por módulo

    @forelse($auditByModule as $row)
  • {{ ucfirst($row->label) }}: {{ number_format($row->total) }}
  • @empty
  • Sin movimientos.
  • @endforelse

Últimas importaciones

    @forelse($recentImports as $job)
  • #{{ $job->id }} · {{ $job->nombre_archivo }} ({{ $job->estado }})
  • @empty
  • Sin importaciones.
  • @endforelse

Últimas exportaciones

    @forelse($recentExports as $job)
  • #{{ $job->id }} ({{ $job->estado }})
  • @empty
  • Sin exportaciones.
  • @endforelse
@endsection