@extends('layouts.app') @section('title', 'Certificate Details') @section('content')
{{ $certificate->certificate_number }}
{{ $certificate->status }}
| Certificate #: | {{ $certificate->certificate_number }} |
|---|---|
| Verification Code: | {{ $certificate->verification_code }} |
| Employee: | {{ $certificate->employee?->name }} |
| Topic: | {{ $certificate->topic?->topic_name }} |
| Training: |
@if($certificate->training)
{{ $certificate->training->training_code }}
@else — @endif
|
| Issue Date: | {{ $certificate->issue_date?->format('M d, Y') }} |
| Expiry Date: | {{ $certificate->expiry_date?->format('M d, Y') ?? 'No Expiry' }} |
| Issued By: | {{ $certificate->issuer?->name ?? 'System' }} |
| Revocation Reason: | {{ $certificate->revocation_reason }} |
| Revoked By: | {{ $certificate->revoker?->name }} on {{ $certificate->revoked_at?->format('M d, Y') }} |