{{-- @php $items = [ [ 'no'=>'5.2.1', 'title'=>'Placement and Higher education', 'url'=>'#' ], [ 'no'=>'5.2.2', 'title'=>'Students qualifying in state/national/ international level examinations', 'url'=>'#' ], ]; $data1 = [ [ 'no'=>'5.2.1.1', 'title'=>'List of students placed', 'url'=>'#' ], [ 'no'=>'5.2.1.2', 'title'=>'List of students progressing for higher education', 'url'=>'#' ], ]; $data2 = [ [ 'no'=>'5.2.2.a', 'title'=>'List of students qualifying for various examinations', 'url'=>'#' ], ]; $data3 = [ [ 'no'=>'6.3.3.1', 'title'=>'Annual Report for teaching staff ', 'url'=>'#' ], [ 'no'=>'6.3.3.2', 'title'=>'Annual Report for non-teaching staff ', 'url'=>'#' ], ]; $data_year = [ [ 'no'=>'5.2.1.1_a', 'title'=>'List of students for Academic Year 2022-23', 'url'=>'#' ], [ 'no'=>'5.2.1.1_b', 'title'=>'List of students for Academic Year 2021-22', 'url'=>'#' ], [ 'no'=>'5.2.1.1_c', 'title'=>'List of students for Academic Year 2020-21', 'url'=>'#' ], [ 'no'=>'5.2.1.1_d', 'title'=>'List of students for Academic Year 2019-20', 'url'=>'#' ], [ 'no'=>'5.2.1.1_e', 'title'=>'List of students for Academic Year 2018-19', 'url'=>'#' ], [ 'no'=>'5.2.1.1_f', 'title'=>'Sample Offer Letters', 'url'=>'#' ], ]; $data_year2 = [ [ 'no'=>'5.2.2.a.1', 'title'=>'List of Students', 'url'=>'#' ], [ 'no'=>'5.2.2.a.2', 'title'=>'List of certificates', 'url'=>'#' ], ]; @endphp --}} @extends('frontend.mainlayout') @section('title', 'QIF 5.2: Student Progression - RERF Group of Institutions') @section('banner') @include('qic-nav')

QIF 5.2: Student Progression

@endsection @section('main')
@php $auditItems = [ [ 'number' => '5.2.1', 'title' => 'Percentage of placement of outgoing students and students progressing to higher education during the last five years', 'subItems' => [ [ 'label' => '5.2.1.A - Number and List of students placed along with placement details such as name of the company, compensation, etc and links to Placement order', 'nestedSubItems' => [ [ 'label' => ' 2022-23', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_A/2022-23.pdf', ], [ 'label' => ' 2021-22', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_A/2021-22.pdf', ], [ 'label' => ' 2020-21', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_A/2020-21.pdf', ], [ 'label' => ' 2019-20', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_A/2019-20.pdf', ], [ 'label' => ' 2018-19', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_A/2018-19.pdf', ], [ 'label' => 'Sample Offer Letters', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_A/Sample Offer Letter.pdf', ], ], ], [ 'label' => '5.2.1.B - List of students progressing for Higher Education, with details of program and institution that they are/have enrolled along with links to proof of continuation in higher education.', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_B.pdf', ], [ 'label' => '5.2.1.C - Institutional data in the prescribed format', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_C.xlsx', ], [ 'label' => '5.2.1.D - Links/documents relating to placement cell such as brochures, tie-ups etc.', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_D.pdf', ], [ 'label' => '5.2.1.E - Upload supporting data for students who have joined for higher education in prescribed format for the assessment period.', 'link' => '/qif/qif5/5.2/5.2.1/5.2.1_E.pdf', ], ], ], [ 'number' => '5.2.2', 'title' => 'Number of students qualifying in state/ national/ international level examinations year wise during last five years (eg: IIT /JAM /NET /SLET /GATE /GMAT /GPAT /CLAT /CAT /GRE /TOEFL /IELTS/ Civil Services/ State government examinations etc.)', 'subItems' => [ [ 'label' => '5.2.2.A - List of students qualified year wise under each category and links to Qualifying Certificates of the students taking the examination', 'link' => '/qif/qif5/5.2/5.2.2/5.2.2_A.pdf', ], [ 'label' => '5.2.2.B - Institutional data in the prescribed format', 'link' => '/qif/qif5/5.2/5.2.2/5.2.2_B.xlsx', ], [ 'label' => '5.2.2.C - Qualifying Certificates of the students', 'link' => '/qif/qif5/5.2/5.2.2/5.2.2_C.pdf', ], ], ], ]; @endphp @foreach ($auditItems as $item) @endforeach
{{ $item['number'] }} @if (isset($item['link'])) {{ $item['title'] }} @else {{ $item['title'] }} @endif
    @foreach ($item['subItems'] as $subItem)
  • @if (isset($subItem['link'])) {{ $subItem['label'] }} @else {{ $subItem['label'] }} @endif @if (isset($subItem['nestedSubItems']))
      @foreach ($subItem['nestedSubItems'] as $nestedSubItem)
    • @if (isset($nestedSubItem['link'])) {{ $nestedSubItem['label'] }} @else {{ $nestedSubItem['label'] }} @endif
    • @endforeach
    @endif
  • @endforeach
{{--
@foreach ($items as $item) @endforeach
{{$item['no'] ?? ''}} {{$item['title'] ?? ''}}
--}} @endsection