{{ __('Credentials Overview') }}

{{ __('Manage digital certificates, achievements, and academic pathways.') }}

{{-- Primary KPI Stats Grid --}}

{{ __('Total Certificates') }}

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

{{ __('Valid') }}

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

{{ __('Revoked') }}

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

{{ __('Achievements') }}

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

{{ __('Pathways') }}

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

{{-- Secondary Stats Grid --}}

{{ __('Pathways Completed') }}

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

πŸŽ“

{{ __('Pathways Active') }}

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

⏳

{{ __('Expired Certs') }}

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

⏰
{{-- Recent Certificates --}}

{{ __('Recently Issued Certificates') }}

View All →
@if($recentCertificates->count() > 0)
@foreach($recentCertificates as $cert)

{{ Str::limit($cert->title, 35) }}

{{ $cert->user?->name ?? 'Unknown Student' }}

@php $statusType = match($cert->status) { 'valid' => 'success', 'revoked' => 'danger', 'expired' => 'warning', 'superseded' => 'muted', default => 'info', }; @endphp {{ $cert->status }}

{{ $cert->issued_at?->format('M d, Y') }}

@endforeach
@else
πŸ†

{{ __('No certificates issued') }}

{{ __('When certificates are awarded, they will appear here.') }}

@endif
{{-- Pathway Progress --}}

{{ __('Active Pathway Enrollments') }}

Manage →
@if($pathwayProgress->count() > 0)
@foreach($pathwayProgress as $up)

{{ $up->pathway?->name ?? 'Unknown Pathway' }}

{{ $up->user?->name ?? 'Unknown Student' }}

{{ number_format($up->progress_percentage, 0) }}%
@endforeach
@else
πŸ—ΊοΈ

{{ __('No active pathways') }}

{{ __('Students enrolled in pathways will show progress here.') }}

@endif
@push('scripts') @endpush