Course registration

@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))
@csrf @method('PUT')

Available curriculum courses

@forelse($offerings as $offering)@empty

No eligible offerings are available.

@endforelse
Save selections
@csrfSubmit for approval
@endif

Print registration form

Approval history

    @foreach($registration->approvals as $approval)
  1. {{ str($approval->stage)->title() }} — {{ str($approval->decision)->title() }}: {{ $approval->comments }}
  2. @endforeach
@endif