@if(isset($reportModel->position))
{{ $reportModel->position }}
@endif
{{ isset(\App\Models\User::find($reportModel->written_by_id)->name) ? \App\Models\User::find($reportModel->written_by_id)->name : "Unknown" }}
@can('view', [\App\Models\Training::class, $reportModel->training])
View training
@endcan
@markdown($reportModel->content)
@if(isset($reportModel->contentimprove) && !empty($reportModel->contentimprove))
Areas to improve
@markdown($reportModel->contentimprove)
@endif
@if($reportModel->attachments->count() > 0)
@foreach($reportModel->attachments as $attachment)
@endforeach
@endif