{{-- resources/views/school/transcripts/history.blade.php --}} @extends('layouts.app') @section('title', 'Transcript History') @section('breadcrumb', 'Transcripts › Issuance History') @section('content')

Transcript Issuance History

{{ $student->full_name }} — {{ $student->mcss_student_id }}

Back to Preview
@forelse($logs as $log) @empty @endforelse
Issued DatePurposeIssued BySchoolExpiresVerification 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.
@endsection