@extends('layouts.admin') @section('title', 'Student Certificate Verification') @section('content_header')
| 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
|
|||||