@php $items = [ [ 'no' => '3.3.1', 'title' => 'Number of research papers published per teacher in the Journals notified on UGC care list during the last five years', 'url' => '#', ], [ 'no' => '3.3.2', 'title' => 'Number of books and chapters in edited volumes/books published and papers published in national/international conference proceedings per teacher during last five years', 'url' => '#', ], ]; $data1 = [ [ 'title' => 'Link to the uploaded papers, the first page/full paper(with author and affiliation details)on the institutional website', 'url' => '/qif/qif3/qif3/3.3/3.3.1/3.3.1_a.pdf', ], [ 'title' => 'Link to re-directing to journal source-cite website in case of digital journals', 'url' => '/qif/qif3/qif3/3.3/3.3.1/3.3.1_b.pdf', ], [ 'title' => 'Links to the papers published in journals listed in UGC CARE list', 'url' => '/qif/qif3/qif3/3.3/3.3.1/3.3.1_c.pdf', ], ['title' => 'Link landing to the research paper and to the journal website', 'url' => '/qif/qif3/qif3/3.3/3.3.1/3.3.1_d.pdf'], ['title' => 'Institutional data in the prescribed format', 'url' => '/qif/qif3/qif3/3.3/3.3.1/3.3.1.xlsx'], ]; $data2 = [ [ 'title' => 'List of chapter/book along with the links redirecting to the source website', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_a.pdf', ], [ 'title' => 'Copy of the Cover page, content page and first page of the publication indicating ISBN number and year of publication for books/chapters', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_b.pdf', ], ['title' => 'Summary', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_b_summary.pdf'], ['title' => '2022-23', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_c_22-23.pdf'], ['title' => '2021-22', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_c_2021-22.pdf'], ['title' => '2020-21', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_c_2020-21.pdf'], ['title' => '2019-20', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_c_2019-20.pdf'], ['title' => '2018-19', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_c_2018-19.pdf'], ['title' => 'Link to the cover page, content page and first page of the selected publication', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2_c.pdf'], ['title' => 'Institutional data in the prescribed format', 'url' => '/qif/qif3/qif3/3.3/3.3.2/3.3.2.xlsx'], ]; $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 3.3: Research Publication and Awards - RERF Group of Institutions') @section('banner') @include('qic-nav')

QIF 3.3: Research Publication and Awards

@endsection @section('main')
@foreach ($items as $item) @endforeach
{{ $item['no'] ?? '' }} {{ $item['title'] ?? '' }}
    @if ($item['no'] == '3.3.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'] == '3.3.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