@include('layout.header') RAV Accreditation Previous Applications View {{-- --}}
@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') @elseif(Auth::user()->role == '5') @include('layout.secretariat') @elseif(Auth::user()->role == '6') @include('layout.sidbarAccount') @endif @include('layout.rightbar')
Back
@php $summaries = getSummaries($applicationDetails->id, $course); @endphp @if ($summaries != null)
DESKTOP ASSESSMENT FORM
Application No (provided by ATAB) : {{ $summaries->application->application_uid }} Date of application : {{ \Carbon\Carbon::parse($summaries->application->created_at)->format('d-m-Y') }}
Name and Location of the Training Provider : {{ $summaries->location_training_provider }} Name of the course to be assessed : {{ $summaries->course_assessed }}
Way of assessment : {{ $summaries->way_of_desktop }} No of Mandays : {{ $summaries->mandays ?? '' }}
Signature .............
Assessor Name {{ $summaries->assessor }}
@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 $documents = getAllDocumentsForSummaryForDesktop($question->id, $applicationDetails->id, $course); @endphp @if (count($documents) > 0) @foreach ($documents as $doc) @php $comment = getDocComment($doc->id); @endphp @if ($comment) @if ($comment->status == 1) NC1 @elseif($comment->status == 2) NC2 @endif @endif @endforeach @else @php $documents = getAllDocumentsNoAction($question->id, $applicationDetails->id, $course); @endphp @if (count($documents) > 0) @foreach ($documents as $doc) @php $comment = getDocComment($doc->id); @endphp @if ($comment) @if ($comment->status == 1) NC1 @elseif($comment->status == 2) NC2 @endif @else Document Uploaded. No NC @endif @endforeach @else Document Not Uploaded @endif @endif @php $documents = getSingleDocumentForDesktop($question->id, $course, $applicationDetails->id); @endphp @if ($documents) @php $comment = getDocRemarks($documents->id); @endphp @if ($comment) {{ $comment->remark }} @else No Remark @endif @else No Remark @endif @php $documents = getQuestionDocumentDesktop($question->id, $course, $applicationDetails->id); @endphp @if (count($documents) > 0) @foreach ($documents as $item) @endforeach @else Document not available! @endif @php $documents = getONeDocument($question->id,$applicationDetails->id,$course); @endphp @if($documents) @php $comment = getLastComment($documents->id); @endphp @if($comment) {{ ucfirst($comment->comments) }} @else No Remark @endif @else No Remark @endif
@endif {{-- ONSite --}} @if ($summaryReport != null)
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 ?? 0 }}
Signature .............
Assessor Name {{ $summaryReport->assessor }}
@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 $documents = getAllDocumentsForSummaryForOnsite($question->id, $applicationDetails->id, $course); @endphp @if (count($documents) > 0) @foreach ($documents as $doc) @php $comment = getDocComment($doc->id); @endphp @if ($comment) @if ($comment->status == 1) NC1 @elseif($comment->status == 2) NC2 @endif @endif @endforeach @else Document Not Uploaded @endif @php $documents = getSingleDocumentForONSite($question->id, $course, $applicationDetails->id); @endphp @if ($documents) @php $comment = getDocRemarks($documents->id); @endphp @if ($comment) {{ $comment->remark }} @else No Remark @endif @else No Remark @endif @php $documents = getQuestionDocumentOnsite($question->id, $course, $applicationDetails->id); @endphp @if (count($documents) > 0) @foreach ($documents as $item) @endforeach @else Document not available! @endif @php $documents = getONeDocument($question->id,$applicationDetails->id,$course); @endphp @if($documents) @php $comment = getLastComment($documents->id); @endphp @if($comment) {{ ucfirst($comment->comments) }} @else The document has been uploaded by the training provider, but no action has been taken yet @endif @else No Remark @endif
Brief Summary 1
{{ $summaryReport->summary1 ?? '' }}

Brief Summary 2
{{ $summaryReport->summary2 ?? '' }}
@if ($improvementForm != null)
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
@endif @endif

Total NC

{{ $totalNc ?? 0 }}

Total Accepted

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