{{-- @php $items = [ [ 'no'=>'5.4.1', 'title'=>'Notice, meeting minutes and report of the alumni meets', 'url'=>'#' ], ]; $data1 = [ [ 'no'=>'2022-23', 'title'=>'Alumni Annual Report', 'url'=>'#' ], [ 'no'=>'2021-22', 'title'=>'Alumni Annual Report', 'url'=>'#' ], [ 'no'=>'2020-21', 'title'=>'Alumni Annual Report', 'url'=>'#' ], ]; $data2 = [ [ 'no'=>'6.5.2.1', 'title'=>' ISO Certificate ', 'url'=>'#' ], [ 'no'=>'6.5.2.2', 'title'=>' NAAC Accreditation Certificate ', 'url'=>'#' ], [ 'no'=>'6.5.2.3', 'title'=>' NIRF Report ', 'url'=>'#' ], [ 'no'=>'6.5.2.4', 'title'=>' AAA Report ', '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 = [ ['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'], ['title'=> 'Combined', 'url'=> '/qif/qif2/2_4/2_4_1/2018-23_merged.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'], ['title'=> 'Combined', 'url'=> '/qif/qif2/2_4/2_4_2/2018-23_merged.pdf'] ]; @endphp --}} @extends('frontend.mainlayout') @section('title', 'QIF 5.4: Alumni Engagement - RERF Group of Institutions') @section('banner') @include('qic-nav')

QIF 5.4: Alumni Engagement

@endsection @section('main')
@php $auditItems = [ [ 'number' => '5.4.1 ', 'title' => 'There is a registered Alumni Association that contributes significantly to the development of the institution through financial and/or other support services', 'subItems' => [ [ 'label' => '5.4.1.A - Notice, meeting minutes and report of the alumni meets', 'nestedSubItems' => [ [ 'label' => ' 2022-23', 'link' => '/qif/qif5/5.4/2023.pdf', ], [ 'label' => ' 2021-22', 'link' => '/qif/qif5/5.4/2022.pdf', ], [ 'label' => ' 2020-21', 'link' => '/qif/qif5/5.4/2021.pdf', ], ], ], [ 'label' => '5.4.1_B Writeup', 'link' => '/qif/qif5/5.4/5.4.1_B.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