{{-- Vault Header --}}
🔐

{{ __('Secure Vault') }}

{{ __('Recommendation Letters') }}

{{ __('Cryptographically signed letters of recommendation — immutable and verifiable') }}

{{-- Recommendations --}}
@forelse($recommendations ?? [] as $rec)
📝

{{ $rec->title ?? 'Recommendation' }}

By {{ $rec->author_name ?? 'Teacher' }} • {{ $rec->created_at?->format('M d, Y') ?? 'N/A' }}

🔒 {{ __('Sealed') }}

"{{ $rec->content ?? 'No content available.' }}"

Hash: {{ substr($rec->cryptographic_hash ?? 'N/A', 0, 20) }}... Issued: {{ $rec->issued_at?->format('M d, Y H:i') ?? 'N/A' }}
@empty

🔐

{{ __('No recommendations in vault') }}

{{ __('Teacher recommendations will appear here once issued.') }}

@endforelse