@extends('layouts.admin') @section('title', 'Student Certificate Verification') @section('content_header')

Student Certificate Verification

@stop @section('content')

Student Certification Management

Export CSV Manage Permissions
Total Students {{ number_format($stats['total_certifications']) }}
Last Sync {{ $stats['last_sync_human'] }}
Last Sync Date {{ $stats['last_sync'] ? \Carbon\Carbon::parse($stats['last_sync'])->format('M d, Y') : 'Never' }}
Status @if($stats['last_sync']) Active @else No Data @endif
@forelse($certifications as $certification) @empty @endforelse
Student ID Name Course Country Synced At Actions
{{ $certification->student_id }} {{ $certification->first_name }} {{ $certification->last_name }} {{ Str::limit($certification->course, 30) ?: 'N/A' }} {{ $certification->country ?: 'N/A' }} {{ $certification->synced_at ? \Carbon\Carbon::parse($certification->synced_at)->format('M d, Y h:i A') : 'N/A' }}
No student certifications found. @if($stats['total_certifications'] == 0) Click here to sync from Google Sheets. @endif
@include('admin.partials.pagination', ['items' => $certifications, 'itemName' => 'certifications'])
@stop @section('js') @parent @stop