@if(session('status'))
{{ session('status') }}
@endif
@if(!$semester)
No current semester is configured.
@elseif(!$registration)
Registration is unavailable.
@else
{{ $semester->name }}
{{ $student->programme->name }}
{{ str($registration->status)->replace('_',' ')->title() }}Selected units: {{ $registration->total_credit_units }}
@if(in_array($registration->status,['draft','rejected'],true))
@endif
Print registration form
Approval history
@foreach($registration->approvals as $approval)- {{ str($approval->stage)->title() }} — {{ str($approval->decision)->title() }}: {{ $approval->comments }}
@endforeach
@endif