@include('layout.header') RAV Accreditation
@include('layout.topbar')
@if (Auth::user()->role == '1') @include('layout.sidebar') @elseif(Auth::user()->role == '2') @include('layout.siderTp') @elseif(Auth::user()->role == '3') @include('layout.sideAss') @elseif(Auth::user()->role == '4') @include('layout.sideprof') @endif @include('layout.rightbar')
@if ($message = Session::get('success')) @endif
Back Print
ONSITE ASSESSMENT FORM
Application No (provided by ATAB) : {{ $applicationDetails->application_uid }} Date of application : {{ \Carbon\Carbon::parse($applicationDetails->created_at)->format('d-m-Y') }}
Name and Location of the Training Provider : {{ $summaryReport->location_training_provider }} Name of the course to be assessed : {{ $summaryReport->course_assessed }}
Way of assessment : {{ $summaryReport->way_of_desktop }} No of Mandays : {{ $summaryReport->mandays }}
Signature .............
Assessor Name {{ auth()->user()->firstname . ' ' . auth()->user()->middlename . ' ' . auth()->user()->lastname }}
@foreach ($chapters as $chapter) @foreach ($chapter->questions as $question) @endforeach @endforeach
Sl. No Objective Element NC raised CAPA by Training Provider Document submitted
against the NC
Remarks (Accepted/ Not accepted)
{{ $chapter->title ?? '' }}
{{ $question->code }} {{ $question->title }} @php $summeryReportQuestion = getQuestionSummary($question->id, $summaryReport->id); @endphp @if ($summeryReportQuestion) @if ($summeryReportQuestion != null) {{ $summeryReportQuestion->nc_raised }} @endif @else @php $documents = getAllDocumentsForSummary($question->id, $applicationDetails->id, $course); @endphp @if (count($documents) > 0) @foreach ($documents as $doc) @php $comment = getDocComment($doc->id); @endphp @if ($comment) {{ printStatus($doc->id) }} @endif @endforeach @else Document not uploaded! @endif @endif @php $getNCComments = getNCRecordsComments($question->id, $course, $applicationDetails->id); @endphp @if ($getNCComments) @foreach ($getNCComments as $collection) @foreach ($collection as $item)
{{ $item->comments ?? '' }}
@endforeach @endforeach @endif
@php $documents = getQuestionDocument($question->id, $course, $applicationDetails->id); @endphp @if ($documents) @foreach ($documents as $item) @endforeach @else @endif @php $documents = getAllDocumentsForSummary($question->id, $applicationDetails->id, $improvementForm->course_id); @endphp @if (count($documents) > 0) @foreach ($documents as $doc) @if ($loop->iteration == 1) @php $comment = getDocComment($doc->id); @endphp @if ($comment) {{ printRemark($doc->id) }} @endif @endif @endforeach @else Document not uploaded! @endif
FORM -3 - OPPORTUNITY FOR IMPROVEMENT FORM
Name and Location of the Training Provider: {{ $improvementForm->training_provider_name }} Name of the course to be assessed: {{ $improvementForm->course_name }}
Way of assessment (onsite/ hybrid/ virtual): {{ $improvementForm->way_of_assessment }} No of Mandays: {{ $improvementForm->mandays }}
S. No. Opportunity for improvement Form Standard reference
{{ $improvementForm->opportunity_for_improvement }} {{ $improvementForm->standard_reference }}
Signatures
Name {{ $improvementForm->name }}
Team Leader: {{ $improvementForm->team_leader }} Assessor: {{ $improvementForm->assessor_name }} Rep. Assessee Orgn: {{ $improvementForm->rep_assessee_orgn }}
Date: {{ $improvementForm->date_of_submission }} Signature of the Team Leader

Total NC

{{ $totalNc ?? 0 }}

Total Accepted

{{ $totalAccepted ?? 0 }}
@include('layout.footer')