{{-- HEADER & FILTERS --}}
{{ strtoupper(substr($student->name ?? 'S', 0, 1)) }}

{{ $student->name ?? __('Student') }}

{{ __('Formal endorsements from the teaching faculty') }}

{{ __('Back') }}
{{-- KPI Summary --}}
{{ __('Total Entries') }}
{{ $kpis['total'] ?? 0 }}
{{ __('Public Access') }}
{{ $kpis['public'] ?? 0 }}
{{ __('Latest Entry') }}
{{ $kpis['latest'] }}
{{-- LIST --}}
@forelse($recommendations as $rec)
{{ strtoupper(substr($rec->teacher?->name ?? 'T', 0, 1)) }}

{{ $rec->teacher?->name ?? __('Teacher') }}

{{ $rec->created_at->format('M d, Y') }}

{{ __('View Full Letter') }}
@empty @endforelse