@php $items = [ [ 'no' => '2.6.1', 'title' => 'Programme Outcomes (POs) and Course Outcomes (COs) for all Programmes offered by the Institution', 'url' => '/qif/qif2/2_6/Index 2.6.1.pdf', ], [ 'no' => '2.6.2', 'title' => 'Attainment of POs and COs are evaluated', 'url' => '/qif/qif2/2_6/Index 2.6.2.pdf', ], [ 'no' => '2.6.3', 'title' => 'Pass percentage of Students during last five years (excluding backlog students)', 'url' => '/qif2/2-6', ], ]; $data1 = [['title' => 'Summary', 'url' => '/qif/qif2/2_6/2_6_1/1._Summary.pdf'], ['title' => 'Student Handbook (Sample of ME & First Year Engineering)', 'url' => '/qif/qif2/2_6/2_6_1/Student Handbook.pdf'], ['title' => 'University scheme for all branches', 'url' => '/qif/qif2/2_6/2_6_1/University scheme and curriculam 2.6.1.pdf'], ['title' => 'Link to Institutes Website where Vision, mission, COs POs are displayed', 'url' => '/cos-pos'], ['title' => 'Sample CO, PO mappings', 'url' => '/qif/qif2/2_6/2_6_1/Sample CO PO Mapping 2.6.1.pdf'], ['title' => 'Sample Course file', 'url' => '/qif/qif2/2_6/2_6_1/Sample copy of Course File 2.6.1.docx.pdf']]; $data2 = [['title' => 'Summary', 'url' => '/qif/qif2/2_6/2_6_2/1._Summary.pdf'], ['title' => 'Attainment Sheet', 'url' => '/qif/qif2/2_6/2_6_2/Attainment sheet for all department 2.6.2.pdf'], ['title' => 'Sample copy of Seminars/Webinar/FDPs', 'url' => '/qif/qif2/2_6/2_6_2/Sample copy .pdf'], ['title' => 'Feedback System', 'url' => '/feedback'], ['title' => 'Sample copy of Timetable showing Tutorial', 'url' => '/qif/qif2/2_6/2_6_2/Time tables showing Tutorials.pdf'], ['title' => 'Policy on advanced and slow learners', 'url' => '/qif/qif2/2_6/2_6_2/Policy on advanced and slow learners.pdf']]; $data3 = [['title' => 'Institutional data', 'url' => '/qif/qif6/2.6.3.xlsx'], ['title' => 'Report of final year (final semester) result for all branches', 'url' => '/qif/qif2/2_6/2_6_3/Report of final year students result 2.6.3.2.pdf'], ['title' => 'Annual Report of final year (final semester) result for all branches', 'url' => '/qif/qif2/2_6/2_6_3/Annual Report of final year students.pdf']]; $data_year = [['title' => '2022-23', 'url' => '/qif/qif2/2_4/2_4_1/2022-23.pdf'], ['title' => '2021-22', 'url' => '/qif/qif2/2_4/2_4_1/2021-22.pdf'], ['title' => '2020-21', 'url' => '/qif/qif2/2_4/2_4_1/2020-21.pdf'], ['title' => '2019-20', 'url' => '/qif/qif2/2_4/2_4_1/2019-20.pdf'], ['title' => '2018-19', 'url' => '/qif/qif2/2_4/2_4_1/2018-19.pdf']]; $data_year2 = [['title' => '2022-23', 'url' => '/qif/qif2/2_4/2_4_2/2022-23.pdf'], ['title' => '2021-22', 'url' => '/qif/qif2/2_4/2_4_2/2021-22.pdf'], ['title' => '2020-21', 'url' => '/qif/qif2/2_4/2_4_2/2020-21.pdf'], ['title' => '2019-20', 'url' => '/qif/qif2/2_4/2_4_2/2019-20.pdf'], ['title' => '2018-19', 'url' => '/qif/qif2/2_4/2_4_2/2018-19.pdf']]; @endphp @extends('frontend.mainlayout') @section('title', 'QIF 2.6: Student Performance and Learning Outcomes - RERF Group of Institutions') @section('banner') @include('qic-nav')

QIF 2.6: Student Performance and Learning Outcomes

@endsection @section('main')
@foreach ($items as $item) @endforeach
{{ $item['no'] ?? '' }} {{ $item['title'] ?? '' }}
    @if ($item['no'] == '2.6.1') @foreach ($data1 as $data)
  1. {{ $data['title'] ?? '' }} @if ($data['title'] == 'Full Time Teacher List') @foreach ($data_year as $year) @endforeach @endif
  2. @endforeach @endif @if ($item['no'] == '2.6.2') @foreach ($data2 as $data)
  3. {{ $data['title'] ?? '' }} @if ( $data['title'] == 'Number of full time teachers year wise in last five years') @foreach ($data_year2 as $year) @endforeach @endif
  4. @endforeach @endif @if ($item['no'] == '2.6.3') @foreach ($data3 as $data)
  5. {{ $data['title'] ?? '' }} @if ( $data['title'] == 'Number of full time teachers year wise in last five years') @foreach ($data_year2 as $year) @endforeach @endif
  6. @endforeach @endif
@endsection