Monitoreo de Estudiantes

Estadísticas y distribución académica
Actualizando...
{{ $lastUpdate }}
{{ number_format($stats['total']) }} Estudiantes

{{ number_format($stats['total']) }}

Total Estudiantes

Base total

{{ number_format($stats['activos']) }}

Estudiantes Activos

{{ $stats['total'] > 0 ? round(($stats['activos'] / $stats['total']) * 100, 1) : 0 }}% del total

{{ number_format($stats['nuevos_mes']) }}

Nuevos este Mes

{{ now()->format('M Y') }}

{{ number_format($stats['inactivos']) }}

Estudiantes Inactivos

{{ $stats['total'] > 0 ? round(($stats['inactivos'] / $stats['total']) * 100, 1) : 0 }}% del total
Resumen Rápido
Tasa de Actividad {{ $stats['total'] > 0 ? round(($stats['activos'] / $stats['total']) * 100, 1) : 0 }}%
Crecimiento Mensual +{{ $stats['nuevos_mes'] }}
Promedio por Grado {{ $byGrade->count() > 0 ? round($stats['activos'] / $byGrade->count(), 1) : 0 }}
Por Nivel Educativo
@foreach($byLevel as $index => $level)
{{ $level->nivel }}
{{ $level->count }}
@endforeach
Por Grado
@foreach($byGrade as $index => $grade)
{{ $grade->grado }}
{{ $grade->grado }}° Grado
{{ $grade->count }}
@endforeach
Por Sección
@foreach($bySection as $index => $section)
{{ $section->seccion }}
Sección {{ $section->seccion }}
{{ $section->count }}
@endforeach
Últimos Registros
Estudiantes registrados recientemente
@forelse($recent as $index => $student) @empty @endforelse
Código
Estudiante
Grado
Sección
Fecha Registro
Estado
{{ $student->codigo ?? 'N/A' }}
{{ substr($student->nombres, 0, 1) }}{{ substr($student->apellidos, 0, 1) }}
{{ $student->nombres }} {{ $student->apellidos }}
{{ $student->documento_identidad ?? 'Sin documento' }}
{{ $student->grado ?? 'N/A' }}° {{ $student->seccion ?? 'N/A' }}
{{ $student->created_at->format('d/m/Y') }}
{{ $student->created_at->diffForHumans() }}
@if($student->status) Activo @else Inactivo @endif
No hay estudiantes registrados
Los nuevos registros aparecerán aquí