Course Outline
{{ $training->course_outline }}
Training Details
Creation Date: {{ $training->creation_date->format('M d, Y') }}
Supervisor: {{ $training->supervisor_name }}
@if($training->remarks)
Remarks: {{ $training->remarks }}
@endif
@if($training->participant_officers && $training->participant_officers->count() > 0)
Participants ({{ $training->participant_officers->count() }})
@foreach($training->participant_officers as $officer)
{{ $officer->name }}
@endforeach
@endif