@php $items = [ [ 'no' => '3.1.1', 'title' => 'Grants received from Government and non-governmental agencies for research projects/endowments in the institution during the last five years (INR in Lakhs)', 'url' => '/qif/qif3/qif3/3.1/3.1.1.pdf', ], ]; $data1 = [ [ 'no' => '', 'title' => 'SUMMARY', 'url' => '/qif/qif3/qif3/3.1/3.1.1_a.pdf', ], [ 'no' => 'Academic Year 2022-2023: ', 'title' => 'Grants received from Government and non-governmental agencies for research projects / endowments in the institution during the year', 'url' => '/qif/qif3/qif3/3.1/2022-23.pdf', ], [ 'no' => 'Academic Year 2021-2022: ', 'title' => 'Grants received from Government and non-governmental agencies for research projects / endowments in the institution during the year', 'url' => '/qif/qif3/qif3/3.1/2021-22.pdf', ], [ 'no' => 'Academic Year 2019-2020:', 'title' => 'Grants received from Government and non-governmental agencies for research projects / endowments in the institution during the year', 'url' => '/qif/qif3/qif3/3.1/2019-20.pdf', ], [ 'no' => 'Academic Year 2018-2019:', 'title' => 'Grants received from Government and non-governmental agencies for research projects / endowments in the institution during the year', 'url' => '/qif/qif3/qif3/3.1/2018-19.pdf', ], [ 'no' => '', 'title' => 'Links to the e-copies of the sanctioned letters', 'url' => '/qif/qif3/qif3/3.1/3.1.1_c.pdf', ], [ 'no' => '', 'title' => 'List of grants for research projects received during the assessment years along with the nature of the award, the awarding agency with amount and the Sanctioned letter highlighting the required parts', 'url' => '/qif/qif3/qif3/3.1/3.1.1_b.pdf', ], [ 'no' => '', 'title' => 'Institutional data in the prescribed format', 'url' => '/qif/qif3/qif3/3.1/3.1.1.xlsx', ], ]; $data2 = [['title' => 'Number of full time teachers year wise in last five years', 'url' => '#'], ['title' => 'Summary', 'url' => '/qif/qif2/2_4/2_4_2/Summary 2.4.2.pdf'], ['title' => 'Number of full time teachers in last five years (without repeat)', 'url' => '/qif/qif2/2_4/2_4_2/Faculty without repeat.pdf'], ['title' => 'Faculty List left during last five years', 'url' => '/qif/qif2/2_4/2_4_2/Feculty member left.pdf'], ['title' => 'Ph.D. Faculty List', 'url' => '/qif/qif2/2_4/2_4_2/Ph.D faculty list.pdf'], ['title' => 'Degrees / Notifications', 'url' => '/qif/qif2/2_4/2_4_2/Ph.D Certificates 2.4.2.pdf'], ['title' => 'Combined', 'url' => '/qif/qif2/2_4/2_4_2/2.4.2 combine new.pdf']]; $data_year = [ [ 'no' => 'Academic Year 2018-2019', 'title' => 'Sanctioned letters of 2022-23', 'url' => '/qif/qif3/qif3/3.1/3.1.1_c_(22-23).pdf', ], [ 'no' => 'Academic Year 2018-2019', 'title' => 'Sanctioned letters of 2021-22', 'url' => '/qif/qif3/qif3/3.1/3.1.1_c_(21-22).pdf', ], [ 'no' => 'Academic Year 2018-2019', 'title' => 'Sanctioned letters of 2019-20', 'url' => '/qif/qif3/qif3/3.1/3.1.1_c_(19-20).pdf', ], [ 'no' => 'Academic Year 2018-2019', 'title' => 'Sanctioned letters of 2018-19', 'url' => '/qif/qif3/qif3/3.1/3.1.1_c_(18-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'], ['title' => 'Combined', 'url' => '/qif/qif2/2_4/2_4_2/2018-23_merged.pdf']]; @endphp @extends('frontend.mainlayout') @section('title', 'QIF 3.1: Resource Mobilization for Research - RERF Group of Institutions') @section('banner') @include('qic-nav')

QIF 3.1: Resource Mobilization for Research

@endsection @section('main')
@foreach ($items as $item) @endforeach
{{ $item['no'] ?? '' }} {{ $item['title'] ?? '' }}
    @if ($item['no'] == '3.1.1') @foreach ($data1 as $data)
  1. {{ $data['no'] }} {{ $data['title'] ?? '' }} @if ($data['title'] == 'Links to the e-copies of the sanctioned letters') @foreach ($data_year as $year) @endforeach @endif
  2. @endforeach @endif @if ($item['no'] == '2.4.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
@endsection