Formation and research administration

@if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif @can('formation.manage')

Schedule chapel

@csrfSchedule
@foreach($services as $s){{ $s->title }} ({{ $s->attendance_count }})@endforeach

Ministry placement

@csrfApprove placement
@endcan @can('formation.sensitive.manage')

Restricted formation assessment

@csrfRecord assessment
@endcan @can('research.manage')

Postgraduate research

@forelse($projects as $p)
{{ $p->student->user->name }} · {{ $p->topic }} · {{ str_replace('_',' ',$p->status) }}
@csrfAssign
@foreach($p->submissions as $sub)
@csrf{{ $sub->chapter }} v{{ $sub->version }}Review
@endforeach @can('research.approve')
@csrfAdvance
@endcan
@empty

No research project yet.

@endforelse
@endcan