{{-- resources/views/school/transcripts/history.blade.php --}} @extends('layouts.app') @section('title', 'Transcript History') @section('breadcrumb', 'Transcripts › Issuance History') @section('content')
{{ $student->full_name }} — {{ $student->mcss_student_id }}
| Issued Date | Purpose | Issued By | School | Expires | Verification Code |
|---|---|---|---|---|---|
| {{ $log->issued_at->format('M d, Y H:i') }} | {{ $log->purpose ?? '—' }} | {{ $log->issuedBy->name }} | {{ optional($log->school)->code ?? 'MCSS' }} | @if($log->expires_at) {{ $log->expires_at->format('M d, Y') }} @if($log->expires_at->isPast()) Expired @endif @else — @endif |
{{ substr($log->verification_code, 0, 16) }}…
|
| No transcripts have been issued yet. | |||||