@extends('layouts::admin') @section('page_title', 'Certificates') @section('page_subtitle', 'Manage and track all issued certificates') @section('content')
Issued
{{ number_format($stats['issued']) }}
Pending
{{ number_format($stats['pending']) }}
Revoked
{{ number_format($stats['revoked']) }}
Total
{{ number_format($stats['total']) }}
| Certificate ID | Participant | Course | Issue Date | Status | Downloads | Actions |
|---|---|---|---|---|---|---|
| {{ $cert->certificate_number }} |
{{ strtoupper(substr($cert->recipient_name, 0, 1)) }}
{{ $cert->recipient_name }}
|
{{ $cert->course_name }} | {{ $cert->issued_at?->format('M d, Y') ?? '—' }} | @if ($cert->status === 'issued') Issued @elseif ($cert->status === 'revoked') Revoked @else Pending @endif | {{ $cert->downloads->count() }} | |
| No certificates found. | ||||||